From 2ad69b2cfe9ab2628892e9e45484859cd1ea786d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 13 Sep 2023 05:09:13 +0000 Subject: [PATCH] chore: bump the github-actions group with 4 updates Bumps the github-actions group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [actions/setup-go](https://github.com/actions/setup-go), [google-github-actions/release-please-action](https://github.com/google-github-actions/release-please-action) and [goreleaser/goreleaser-action](https://github.com/goreleaser/goreleaser-action). Updates `actions/checkout` from 3 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/v3...v4) Updates `actions/setup-go` from 3 to 4 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v3...v4) Updates `google-github-actions/release-please-action` from 3.5.0 to 3.7.11 - [Release notes](https://github.com/google-github-actions/release-please-action/releases) - [Changelog](https://github.com/google-github-actions/release-please-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/google-github-actions/release-please-action/compare/v3.5.0...v3.7.11) Updates `goreleaser/goreleaser-action` from 3 to 5 - [Release notes](https://github.com/goreleaser/goreleaser-action/releases) - [Commits](https://github.com/goreleaser/goreleaser-action/compare/v3...v5) --- 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: google-github-actions/release-please-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: goreleaser/goreleaser-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 4 ++-- .github/workflows/release.yml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c47a8696d..b0193eb4b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,8 +7,8 @@ jobs: test: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 - - uses: actions/setup-go@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-go@v4 with: go-version-file: go.mod - name: Run tests diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ab58ff078..74cccf6e9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,7 +22,7 @@ jobs: return JSON.stringify(changelogTypes) - name: release please - uses: google-github-actions/release-please-action@v3.5.0 + uses: google-github-actions/release-please-action@v3.7.11 id: release with: release-type: simple @@ -31,20 +31,20 @@ jobs: # https://github.com/google-github-actions/release-please-action#github-credentials token: ${{ secrets.VINCENT_PAT }} - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # we need to fetch all history and tags # so we build the proper version with: fetch-depth: 0 if: ${{ steps.release.outputs.release_created }} - - uses: actions/setup-go@v3 + - uses: actions/setup-go@v4 with: go-version-file: go.mod if: ${{ steps.release.outputs.release_created }} - name: Run GoReleaser - uses: goreleaser/goreleaser-action@v3 + uses: goreleaser/goreleaser-action@v5 with: version: latest args: release --rm-dist