diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..8c2407e --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,16 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + - package-ecosystem: "gomod" + directory: "/" # Location of package manifests + schedule: + interval: "daily" + - package-ecosystem: "github-actions" + directory: "/" + schedule: + # Check for updates to GitHub Actions every week + interval: "weekly" diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml new file mode 100644 index 0000000..0b53fd2 --- /dev/null +++ b/.github/workflows/codecov.yml @@ -0,0 +1,25 @@ +name: Test Coverage + +on: + push: + branches: [ master ] + pull_request: + # The branches below must be a subset of the branches above + branches: [ master ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # pin@v3 + with: + fetch-depth: 2 + - name: Set up Go + uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # pin@v4 + with: + go-version: '1.20' + check-latest: true + - name: Run coverage + run: make coverage + - name: Upload coverage to Codecov + uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # pin@v3 diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml new file mode 100644 index 0000000..798d88b --- /dev/null +++ b/.github/workflows/codeql-analysis.yml @@ -0,0 +1,67 @@ +# For most projects, this workflow file will not need changing; you simply need +# to commit it to your repository. +# +# You may wish to alter this file to override the set of languages analyzed, +# or to provide custom queries or build logic. +# +# ******** NOTE ******** +# We have attempted to detect the languages in your repository. Please check +# the `language` matrix defined below to confirm you have the correct set of +# supported CodeQL languages. +# +name: "CodeQL" + +on: + push: + branches: [ main ] + pull_request: + # The branches below must be a subset of the branches above + branches: [ main ] + schedule: + - cron: '42 20 * * 3' + +jobs: + analyze: + name: Analyze + runs-on: ubuntu-latest + permissions: + actions: read + contents: read + security-events: write + + strategy: + fail-fast: false + matrix: + language: [ 'go' ] + # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ] + # Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support + + steps: + - name: Checkout repository + uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # pin@v3 + + # Initializes the CodeQL tools for scanning. + - name: Initialize CodeQL + uses: github/codeql-action/init@cdcdbb579706841c47f7063dda365e292e5cad7a # pin@v2 + with: + languages: ${{ matrix.language }} + # If you wish to specify custom queries, you can do so here or in a config file. + # By default, queries listed here will override any specified in a config file. + # Prefix the list here with "+" to use these queries and those in the config file. + # Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs + # queries: security-extended,security-and-quality + + # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). + # If this step fails, then you should remove it and run the build manually (see below) + - name: Autobuild + uses: github/codeql-action/autobuild@cdcdbb579706841c47f7063dda365e292e5cad7a # pin@v2 + + # ℹī¸ Command-line programs to run using the OS shell. + # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun + # If the Autobuild fails above, remove it and uncomment the following three lines. + # modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance. + # - run: | + # echo "Run, Build Application using script" + # ./location_of_script_within_repo/buildscript.sh + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@cdcdbb579706841c47f7063dda365e292e5cad7a # pin@v2 diff --git a/.github/workflows/gochecks.yml b/.github/workflows/gochecks.yml new file mode 100644 index 0000000..30b7ee3 --- /dev/null +++ b/.github/workflows/gochecks.yml @@ -0,0 +1,26 @@ +name: go-checks + +on: + push: + branches: [main] + pull_request: + # The branches below must be a subset of the branches above + branches: [main] + +jobs: + check: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # pin@v3 + - name: Setup Go environment + uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # pin@v4 + with: + go-version: '1.20' + check-latest: true + - name: Run Vulncheck + run: | + go install golang.org/x/vuln/cmd/govulncheck@latest + govulncheck ./... + - name: Run golangci-lint + uses: golangci/golangci-lint-action@3a919529898de77ec3da873e3063ca4b10e7f5cc # pin@v3 diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..3ba8cc9 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,80 @@ +name: Release + +permissions: + actions: read + contents: write + packages: write + +on: + push: + tags: + # so a vX.Y.Z-test1 doesn't trigger build + - 'v[0-9]+.[0-9]+.[0-9]+' + - 'v[0-9]+.[0-9]+.[0-9]+-pre*' + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # pin@v3 + + - name: Set up QEMU + uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # pin@v2 + + - name: Set up Docker Buildx + id: buildx + uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # pin@v2 + + - name: Available platforms + run: echo ${{ steps.buildx.outputs.platforms }} + + - name: Log in to Docker Hub + uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # pin@v2 + with: + username: ${{ secrets.DOCKER_USER }} + password: ${{ secrets.DOCKER_TOKEN }} + + - name: Build + id: build + run: | + make info + make release + VERSION=$(make echo-version) + echo "VERSION=${VERSION}" >> $GITHUB_ENV + PACKAGE_VERSION=$(make echo-package-version) + echo "Version $VERSION, Package version $PACKAGE_VERSION" + + - name: Build and push Docker image + uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # pin@v3 + with: + context: . + platforms: linux/amd64,linux/arm64,linux/ppc64le,linux/s390x + push: true + tags: fortio/fortio:${{ env.VERSION }}, fortio/fortio:latest + + - name: Create Release + id: create_release + # Need to find a replacement not using set-output + uses: actions/create-release@0cb9c9b65d5d1901c1f53e5e66eaf4afd303e70e # pin@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token + with: + tag_name: ${{ github.ref }} + release_name: Fortio ${{ env.VERSION }} + draft: true + + - name: Upload release artifacts + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + tag_name="${GITHUB_REF##*/}" + echo "will use tag_name=$tag_name" + # tends to fail and not find the release somehow; add a small sleep... (yuck) + sleep 10 + gh release upload "${tag_name}" release/*.{tgz,zip,rpm,deb,gz} diff --git a/.github/workflows/manual-build.yml b/.github/workflows/manual-build.yml new file mode 100644 index 0000000..7ad86fc --- /dev/null +++ b/.github/workflows/manual-build.yml @@ -0,0 +1,50 @@ +name: Manual Release Update/Rebuild + +permissions: + actions: read + contents: write + packages: write + +on: + workflow_dispatch: + inputs: + tag: + description: 'Tag to rebuild' + required: true + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: test + run: | + echo "tag is ${{ github.event.inputs.tag }}" + + - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # pin@v3 + with: + ref: ${{ github.event.inputs.tag }} + + - name: Set up QEMU + uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # pin@v2 + + - name: Set up Docker Buildx + id: buildx + uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # pin@v2 + + - name: Build + id: build + run: | + make info + make release + VERSION=$(make echo-version) + PACKAGE_VERSION=$(make echo-package-version) + echo "Version $VERSION, Package version $PACKAGE_VERSION" + + - name: Upload release artifacts + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + tag_name="${{ github.event.inputs.tag }}" + echo "tag_name=$tag_name" + gh release upload "${tag_name}" release/*.{tgz,zip,rpm,deb,gz} diff --git a/.github/workflows/releaser.yml b/.github/workflows/releaser.yml new file mode 100644 index 0000000..225e105 --- /dev/null +++ b/.github/workflows/releaser.yml @@ -0,0 +1,41 @@ +name: Release + +on: + push: + tags: + # so a vX.Y.Z-test1 doesn't trigger build + - 'v[0-9]+.[0-9]+.[0-9]+' + - 'v[0-9]+.[0-9]+.[0-9]+-pre*' + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # pin@v3 + with: + fetch-depth: 0 + - uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # pin@v1 + - uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # pin@v1 + - name: Set up Go + uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # pin@v4 + with: + go-version: '1.20' + check-latest: true + - name: Log in to Docker Hub + uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # pin@v2 + with: + username: ${{ secrets.DOCKER_USER }} + password: ${{ secrets.DOCKER_TOKEN }} + - name: "GoReleaser Action" + uses: goreleaser/goreleaser-action@7ec5c2b0c6cdda6e8bbb49444bc797dd33d74dd8 # pin@v5.0.0 + with: + distribution: goreleaser + version: latest + args: release --clean + env: + GITHUB_TOKEN: ${{ secrets.GH_PAT }} + GOWORK: off diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..4948c15 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,22 @@ + +name: Test Tags + +permissions: {} + +on: + push: + tags: + - 'v[0-9]+.[0-9]+.[0-9]+-test*' + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - name: Just a test step + run: echo it works diff --git a/.goreleaser.yaml b/.goreleaser.yaml new file mode 100644 index 0000000..80b9bea --- /dev/null +++ b/.goreleaser.yaml @@ -0,0 +1,85 @@ +builds: + - env: + - CGO_ENABLED=0 + goos: + - linux + - windows + - darwin + goarch: + - amd64 + - arm64 +checksum: + name_template: "checksums.txt" +snapshot: + name_template: "{{ incpatch .Version }}-next" +changelog: + sort: asc + filters: + exclude: + - "^docs:" + - "^test:" +gomod: + proxy: true + mod: mod +dockers: + - image_templates: ["fortio/{{ .ProjectName }}:{{ .Version }}-amd64"] + use: buildx + goarch: amd64 + build_flag_templates: + - --platform=linux/amd64 + - image_templates: ["fortio/{{ .ProjectName }}:{{ .Version }}-arm64"] + use: buildx + goarch: arm64 + build_flag_templates: + - --platform=linux/arm64 +docker_manifests: +- + name_template: fortio/{{ .ProjectName }}:{{ .Version }} + image_templates: + - fortio/{{ .ProjectName }}:{{ .Version }}-amd64 + - fortio/{{ .ProjectName }}:{{ .Version }}-arm64 +- + name_template: fortio/{{ .ProjectName }}:latest + image_templates: + - fortio/{{ .ProjectName }}:{{ .Version }}-amd64 + - fortio/{{ .ProjectName }}:{{ .Version }}-arm64 +release: + prerelease: auto + mode: append +# .goreleaser.yaml +brews: + - + # GitHub/GitLab repository to push the formula to + repository: + owner: fortio + name: homebrew-tap + + # Git author used to commit to the repository. + # Defaults are shown. + commit_author: + name: goreleaserbot + email: bot@goreleaser.com + + # The project name and current git tag are used in the format string. + commit_msg_template: "Brew formula update for {{ .ProjectName }} version {{ .Tag }}" + + # Folder inside the repository to put the formula. + # Default is the root folder. + folder: Formula + + # Your app's homepage. + # Default is empty. + homepage: "https://fortio.org/" + + # Template of your app's description. + # Default is empty. + description: "Slack proxy" + + # SPDX identifier of your app's license. + # Default is empty. + license: "Apache-2.0" + + # So you can `brew test` your formula. + # Default is empty. + test: | + assert_match version.to_s, shell_output("#{bin}/{{ .ProjectName }} -version")