From 58573ad2072b6a2fadb5335edca7d77123e5bc4e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 10 Jun 2026 01:33:05 +0000 Subject: [PATCH] chore(deps): bump the github-actions-deps group across 1 directory with 2 updates Bumps the github-actions-deps group with 2 updates in the / directory: [actions/cache](https://github.com/actions/cache) and [codecov/codecov-action](https://github.com/codecov/codecov-action). Updates `actions/cache` from 4 to 5 - [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/v4...v5) Updates `codecov/codecov-action` from 6.0.0 to 7.0.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/v6.0.0...v7.0.0) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-deps - dependency-name: codecov/codecov-action dependency-version: 6.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions-deps ... Signed-off-by: dependabot[bot] --- .github/workflows/codacy-coverage-reporter.yaml | 2 +- .github/workflows/go.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/codacy-coverage-reporter.yaml b/.github/workflows/codacy-coverage-reporter.yaml index 2c18527..c336d50 100644 --- a/.github/workflows/codacy-coverage-reporter.yaml +++ b/.github/workflows/codacy-coverage-reporter.yaml @@ -23,7 +23,7 @@ jobs: cache: true - name: Cache dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/go/pkg/mod diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 6076293..059a9c9 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -96,7 +96,7 @@ jobs: cache: true - name: Cache dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/go/pkg/mod @@ -109,7 +109,7 @@ jobs: run: go test -race -coverprofile=coverage.out -coverpkg=./... ./... -count=1 - name: Upload coverage to codecov.io - uses: codecov/codecov-action@v6.0.0 + uses: codecov/codecov-action@v7.0.0 with: files: coverage.out fail_ci_if_error: false @@ -132,7 +132,7 @@ jobs: cache: true - name: Cache dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/go/pkg/mod @@ -148,4 +148,4 @@ jobs: run: go test -coverprofile=cover.out -coverpkg=./... ./... && go tool cover -html=cover.out -o cover.html && true - name: Upload coverage to codecov.io - uses: codecov/codecov-action@v6.0.0 + uses: codecov/codecov-action@v7.0.0