From c55e4f7f6c6ad544d0798960baa66e37797910fe Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 22 May 2026 10:08:40 +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 6.0.1 - [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...v6.0.1) --- 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 c4b5d7d..603db15 100644 --- a/.github/workflows/codacy-coverage-reporter.yaml +++ b/.github/workflows/codacy-coverage-reporter.yaml @@ -16,7 +16,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..9dc62b3 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@v6.0.1 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@v6.0.1