From fbb8de0532febaf71b00c11e949517fb8981dcde Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 3 May 2024 14:58:34 +0000 Subject: [PATCH] chore(deps): bump the github-actions group with 7 updates Bumps the github-actions group with 7 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `2` | `4` | | [actions/setup-go](https://github.com/actions/setup-go) | `2` | `5` | | [goreleaser/goreleaser-action](https://github.com/goreleaser/goreleaser-action) | `2` | `5` | | [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) | `3` | `5` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `3` | `4` | | [labd/changie-release-action](https://github.com/labd/changie-release-action) | `0.2.0` | `0.3.1` | | [actions/add-to-project](https://github.com/actions/add-to-project) | `0.5.0` | `1.0.1` | Updates `actions/checkout` from 2 to 4 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v4) Updates `actions/setup-go` from 2 to 5 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v2...v5) Updates `goreleaser/goreleaser-action` from 2 to 5 - [Release notes](https://github.com/goreleaser/goreleaser-action/releases) - [Commits](https://github.com/goreleaser/goreleaser-action/compare/v2...v5) Updates `golangci/golangci-lint-action` from 3 to 5 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](https://github.com/golangci/golangci-lint-action/compare/v3...v5) Updates `codecov/codecov-action` from 3 to 4 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v3...v4) Updates `labd/changie-release-action` from 0.2.0 to 0.3.1 - [Release notes](https://github.com/labd/changie-release-action/releases) - [Changelog](https://github.com/labd/changie-release-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/labd/changie-release-action/compare/v0.2.0...v0.3.1) Updates `actions/add-to-project` from 0.5.0 to 1.0.1 - [Release notes](https://github.com/actions/add-to-project/releases) - [Commits](https://github.com/actions/add-to-project/compare/v0.5.0...v1.0.1) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: goreleaser/goreleaser-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: golangci/golangci-lint-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: labd/changie-release-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/add-to-project dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/release.yaml | 6 +++--- .github/workflows/tests.yaml | 12 ++++++------ .github/workflows/triage.yaml | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 612af53..172643e 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -7,12 +7,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Set up Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: go-version: "1.21" @@ -24,7 +24,7 @@ jobs: PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} - name: Run GoReleaser - uses: goreleaser/goreleaser-action@v2 + uses: goreleaser/goreleaser-action@v5 with: version: latest args: release --rm-dist diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index abbc635..bc39eb2 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -8,16 +8,16 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Go 1.21 - uses: actions/setup-go@v2 + uses: actions/setup-go@v5 with: go-version: "1.21" - name: golangci-lint continue-on-error: true - uses: golangci/golangci-lint-action@v3 + uses: golangci/golangci-lint-action@v5 with: args: --issues-exit-code=0 --timeout=5m @@ -25,7 +25,7 @@ jobs: run: go test -race -coverprofile=coverage.out -covermode=atomic -coverpkg=./... -v ./... - name: Upload to codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: verbose: true @@ -38,12 +38,12 @@ jobs: pull-requests: write actions: write steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - name: Prepare release - uses: labd/changie-release-action@v0.2.0 + uses: labd/changie-release-action@v0.3.1 with: github-token: ${{ secrets.GITHUB_TOKEN }} release-workflow: 'release.yaml' diff --git a/.github/workflows/triage.yaml b/.github/workflows/triage.yaml index 6a30980..9bba0c6 100644 --- a/.github/workflows/triage.yaml +++ b/.github/workflows/triage.yaml @@ -18,7 +18,7 @@ jobs: private-key: ${{ secrets.RD_APP_PRIVATE_KEY }} installation-id: ${{ secrets.RD_APP_INSTALLATION_ID }} - name: set to project board - uses: actions/add-to-project@v0.5.0 + uses: actions/add-to-project@v1.0.1 with: project-url: https://github.com/orgs/labd/projects/3 github-token: ${{ steps.get-app-token.outputs.app-token }}