From 1b394ba26b8460d94aee11b642aba5b19d782801 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 02:03:09 +0000 Subject: [PATCH] ci(github-actions): bump the dependencies group across 1 directory with 5 updates Bumps the dependencies group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [actions/cache](https://github.com/actions/cache) | `4` | `5` | | [actions/setup-go](https://github.com/actions/setup-go) | `5` | `6` | | [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) | `6.0.1` | `9.2.0` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `4` | `5` | Updates `actions/checkout` from 4 to 6 - [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/v4...v6) 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 `actions/setup-go` from 5 to 6 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v5...v6) Updates `golangci/golangci-lint-action` from 6.0.1 to 9.2.0 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](https://github.com/golangci/golangci-lint-action/compare/v6.0.1...v9.2.0) Updates `codecov/codecov-action` from 4 to 5 - [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/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: actions/setup-go dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: golangci/golangci-lint-action dependency-version: 9.2.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: codecov/codecov-action dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/go-lint.yml | 10 +++++----- .github/workflows/go-mod-tidy.yml | 8 ++++---- .github/workflows/go-test.yml | 10 +++++----- .github/workflows/label-checker.yml | 2 +- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/go-lint.yml b/.github/workflows/go-lint.yml index e470e51f..24d2c63b 100644 --- a/.github/workflows/go-lint.yml +++ b/.github/workflows/go-lint.yml @@ -46,7 +46,7 @@ jobs: name: Run golangci-lint runs-on: ubuntu-latest # ref. https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: DEBUG shell: bash run: | @@ -61,7 +61,7 @@ jobs: ================================================================ DEBUG_DOC - name: actions/cache for versenv - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.cache/versenv @@ -85,7 +85,7 @@ jobs: # Setup versenv direnv allow ${{ env.WORKDIR }} make versenv - - uses: actions/setup-go@v5 # ref. https://github.com/actions/setup-go#usage + - uses: actions/setup-go@v6 # ref. https://github.com/actions/setup-go#usage id: setup-go with: cache: false @@ -97,7 +97,7 @@ jobs: echo "GOVERSION=$(go version | cut -d' ' -f3)" >> "$GITHUB_OUTPUT" echo "GOCACHE=$(go env GOCACHE)" >> "$GITHUB_OUTPUT" - name: actions/cache for go - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/go/pkg/mod @@ -119,7 +119,7 @@ jobs: if [ -n "${GITHUB_TOKEN-}" ]; then direnv exec . bash -Eeux -o pipefail -c 'echo "${GOPRIVATE:-}${GOPRIVATE+,}" | while read -d , -r LINE; do echo "set git config: ${LINE}"; git config --global url."https://${GITHUB_TOKEN}:x-oauth-basic@${LINE}".insteadOf "https://${LINE}"; done' fi - - uses: golangci/golangci-lint-action@v6.0.1 # ref. https://github.com/golangci/golangci-lint-action#how-to-use + - uses: golangci/golangci-lint-action@v9.2.0 # ref. https://github.com/golangci/golangci-lint-action#how-to-use with: working-directory: ${{ env.WORKDIR }} args: --timeout=600s diff --git a/.github/workflows/go-mod-tidy.yml b/.github/workflows/go-mod-tidy.yml index 5f854091..98fcf821 100644 --- a/.github/workflows/go-mod-tidy.yml +++ b/.github/workflows/go-mod-tidy.yml @@ -40,7 +40,7 @@ jobs: contents: write runs-on: ubuntu-latest # ref. https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.ref }} # needed for gh pr view - name: DEBUG @@ -57,7 +57,7 @@ jobs: ================================================================ DEBUG_DOC - name: actions/cache for versenv - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.cache/versenv @@ -81,7 +81,7 @@ jobs: # Setup versenv direnv allow ${{ env.WORKDIR }} make versenv - - uses: actions/setup-go@v5 # ref. https://github.com/actions/setup-go#usage + - uses: actions/setup-go@v6 # ref. https://github.com/actions/setup-go#usage id: setup-go with: cache: false @@ -93,7 +93,7 @@ jobs: echo "GOVERSION=$(go version | cut -d' ' -f3)" >> "$GITHUB_OUTPUT" echo "GOCACHE=$(go env GOCACHE)" >> "$GITHUB_OUTPUT" - name: actions/cache for go - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/go/pkg/mod diff --git a/.github/workflows/go-test.yml b/.github/workflows/go-test.yml index 3f5516b1..bc14175e 100644 --- a/.github/workflows/go-test.yml +++ b/.github/workflows/go-test.yml @@ -46,7 +46,7 @@ jobs: name: Run go test runs-on: ubuntu-latest # ref. https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: DEBUG shell: bash run: | @@ -61,7 +61,7 @@ jobs: ================================================================ DEBUG_DOC - name: actions/cache for versenv - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.cache/versenv @@ -83,7 +83,7 @@ jobs: # Setup versenv direnv allow ${{ env.WORKDIR }} make versenv - - uses: actions/setup-go@v5 # ref. https://github.com/actions/setup-go#usage + - uses: actions/setup-go@v6 # ref. https://github.com/actions/setup-go#usage id: setup-go with: cache: false @@ -95,7 +95,7 @@ jobs: echo "GOVERSION=$(go version | cut -d' ' -f3)" >> "$GITHUB_OUTPUT" echo "GOCACHE=$(go env GOCACHE)" >> "$GITHUB_OUTPUT" - name: actions/cache for go - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/go/pkg/mod @@ -127,7 +127,7 @@ jobs: set -Eeu -o pipefail -x direnv allow . direnv exec . make test - - uses: codecov/codecov-action@v4 # ref. https://github.com/codecov/codecov-action#example-workflowyml-with-codecov-action + - uses: codecov/codecov-action@v5 # ref. https://github.com/codecov/codecov-action#example-workflowyml-with-codecov-action with: token: ${{ secrets.CODECOV_TOKEN }} files: ${{ env.WORKDIR }}/coverage.txt diff --git a/.github/workflows/label-checker.yml b/.github/workflows/label-checker.yml index 7e44dd09..a7fd0591 100644 --- a/.github/workflows/label-checker.yml +++ b/.github/workflows/label-checker.yml @@ -45,7 +45,7 @@ jobs: checks: read repository-projects: read steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.ref }} # needed for gh pr view - name: Check labels