chore(deps): update module github.com/goreleaser/goreleaser/v2 to v2.… #5554
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Go | |
| on: [push, pull_request] | |
| jobs: | |
| # Unit test run | |
| unit: | |
| name: Unit | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code into the Go module directory | |
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 | |
| - name: Set up Go | |
| uses: actions/setup-go@v7 | |
| with: | |
| go-version-file: 'go.mod' | |
| cache: true | |
| id: go | |
| - name: Install terraform | |
| uses: hashicorp/setup-terraform@v4 | |
| with: | |
| terraform_version: "1.x.x" | |
| terraform_wrapper: false | |
| - name: Cache Go Modules | |
| uses: actions/cache@v6 | |
| with: | |
| path: ~/go/pkg/mod | |
| key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
| restore-keys: | | |
| ${{ runner.os }}-go- | |
| - name: Get dependencies | |
| run: make vendor | |
| id: modules | |
| - name: Linters | |
| run: make lint | |
| id: lint | |
| - name: Check docs are up-to-date | |
| run: | | |
| make docs-generate | |
| git diff --exit-code docs/ || (echo "::error::Docs are out of date. Run 'make docs-generate' and commit the changes." && exit 1) | |
| - name: Check NOTICE is up-to-date | |
| run: | | |
| make notice | |
| git diff --exit-code NOTICE || (echo "::error::NOTICE is out of date. Run 'make notice' and commit the changes." && exit 1) | |
| - name: Run unit tests | |
| run: make unit | |
| id: unit | |
| - name: Validate the examples | |
| run: make install validate-examples | |
| id: validate-examples |