From 60fa6f5359c76fa599dc37f0ca9f199fd73a3c38 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 13 Aug 2024 07:42:21 +0000 Subject: [PATCH] :seedling: Bump the all-github-actions group with 3 updates Bumps the all-github-actions group with 3 updates: [codecov/codecov-action](https://github.com/codecov/codecov-action), [actions/cache](https://github.com/actions/cache) and [softprops/action-gh-release](https://github.com/softprops/action-gh-release). Updates `codecov/codecov-action` from 3.1.0 to 4.5.0 - [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.1.0...v4.5.0) Updates `actions/cache` from 3 to 4 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3...v4) Updates `softprops/action-gh-release` from 1 to 2 - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](https://github.com/softprops/action-gh-release/compare/v1...v2) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-github-actions - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-github-actions - dependency-name: softprops/action-gh-release dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/go-coverage.yml | 2 +- .github/workflows/pr-check.yml | 2 +- .github/workflows/release.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/go-coverage.yml b/.github/workflows/go-coverage.yml index 92cc3fba..09abf4a6 100644 --- a/.github/workflows/go-coverage.yml +++ b/.github/workflows/go-coverage.yml @@ -18,6 +18,6 @@ jobs: - name: Run go test with coverage run: COVER_PROFILE=coverage.txt make test - name: Codecov upload - uses: codecov/codecov-action@v3.1.0 + uses: codecov/codecov-action@v4.5.0 with: files: ./cover.out diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index ac8bc17b..27cb3c07 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -32,7 +32,7 @@ jobs: uses: actions/checkout@v4 - name: Cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 96df67de..ed6af4cf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -41,7 +41,7 @@ jobs: if: startsWith(github.ref, 'refs/tags/v') - name: Cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} @@ -80,7 +80,7 @@ jobs: run: make release-manifests - name: Release - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 with: prerelease: false draft: true