From 9f85ec1297c3f0c007d2b7474a3ce81dfb4abb35 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 30 Jul 2026 18:27:30 +0000 Subject: [PATCH] chore(deps): bump the ci group with 4 updates Bumps the ci group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [arnested/go-version-action](https://github.com/arnested/go-version-action), [actions/setup-go](https://github.com/actions/setup-go) and [codecov/codecov-action](https://github.com/codecov/codecov-action). Updates `actions/checkout` from 6.0.1 to 7.0.1 - [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/8e8c483db84b4bee98b60c0593521ed34d9990e8...3d3c42e5aac5ba805825da76410c181273ba90b1) Updates `arnested/go-version-action` from 1.1.23 to 2.1.5 - [Release notes](https://github.com/arnested/go-version-action/releases) - [Commits](https://github.com/arnested/go-version-action/compare/978371bd4d8cad0f54106c8be4273e2fcdd74f57...6ccff891beb7200dc4a3389378c726c75b7d4b1e) Updates `actions/setup-go` from 6.1.0 to 7.0.0 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/4dc6199c7b1a012772edbd06daecab0f50c9053c...b7ad1dad31e06c5925ef5d2fc7ad053ef454303e) Updates `codecov/codecov-action` from 5.5.2 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/671740ac38dd9b0130fbe1cec585b89eea48d3de...fb8b3582c8e4def4969c97caa2f19720cb33a72f) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci - dependency-name: arnested/go-version-action dependency-version: 2.1.5 dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci - dependency-name: actions/setup-go dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci - dependency-name: codecov/codecov-action dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci ... Signed-off-by: dependabot[bot] --- .github/workflows/code.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/code.yaml b/.github/workflows/code.yaml index 4b2b69e..b3305c2 100644 --- a/.github/workflows/code.yaml +++ b/.github/workflows/code.yaml @@ -25,16 +25,16 @@ jobs: matrix: ${{ steps.versions.outputs.matrix }} latest: ${{ steps.versions.outputs.latest }} steps: - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v5.5.0 - - uses: arnested/go-version-action@978371bd4d8cad0f54106c8be4273e2fcdd74f57 #v1.1.23 + - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v5.5.0 + - uses: arnested/go-version-action@6ccff891beb7200dc4a3389378c726c75b7d4b1e #v2.1.5 id: versions Lint: runs-on: ubuntu-latest needs: GoVersions steps: - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v5.5.0 - - uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0 + - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v5.5.0 + - uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0 with: go-version: ${{ needs.GoVersions.outputs.latest }} - name: Verify Config @@ -49,8 +49,8 @@ jobs: matrix: go: ${{ fromJSON(needs.GoVersions.outputs.matrix) }} steps: - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v5.5.0 - - uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0 + - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v5.5.0 + - uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0 with: go-version: ${{ matrix.go }} - run: go test -race -cover -coverprofile=coverage.out -covermode=atomic ./... @@ -58,7 +58,7 @@ jobs: if: always() - name: Upload coverage reports to Codecov if: ${{ !cancelled() }} - uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2 + uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0 env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - name: Upload test results to Codecov