From 4b8fccb04e16d9ff42307bc54e5fccf5c1160ab6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 10 Jan 2026 07:01:14 +0000 Subject: [PATCH] chore(deps): bump the github group across 1 directory with 6 updates Bumps the github group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `5` | `6` | | [actions/setup-go](https://github.com/actions/setup-go) | `5` | `6` | | [actions/cache](https://github.com/actions/cache) | `4` | `5` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `6` | | [actions/setup-node](https://github.com/actions/setup-node) | `4` | `6` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `5` | `7` | Updates `actions/checkout` from 5 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/v5...v6) 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 `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/upload-artifact` from 4 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v6) Updates `actions/setup-node` from 4 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v4...v6) Updates `actions/download-artifact` from 5 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v5...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github - dependency-name: actions/setup-go dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github ... Signed-off-by: dependabot[bot] --- .github/workflows/claude.yml | 2 +- .github/workflows/release.yml | 32 ++++++++++++++++---------------- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/claude.yml b/.github/workflows/claude.yml index f1239418..8862ed31 100644 --- a/.github/workflows/claude.yml +++ b/.github/workflows/claude.yml @@ -25,7 +25,7 @@ jobs: id-token: write steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 1 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e8b7ec59..87b2fcee 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -39,16 +39,16 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set up Go - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: go-version: ${{ env.GO_VERSION }} cache: true - name: Cache Go modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} @@ -64,7 +64,7 @@ jobs: go tool cover -html=coverage.out -o coverage.html - name: Upload coverage reports - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: coverage-report path: | @@ -76,12 +76,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: Set up Node - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: ${{ env.NODE_VERSION }} @@ -89,7 +89,7 @@ jobs: run: npm install -g corepack@latest && corepack enable - name: Set up cache - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: cache: "pnpm" cache-dependency-path: web/pnpm-lock.yaml @@ -111,7 +111,7 @@ jobs: run: CI= pnpm run build - name: Upload web production build - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: web-dist path: web/dist @@ -122,18 +122,18 @@ jobs: needs: [test, web] steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: Download web production build - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v7 with: name: web-dist path: web/dist - name: Set up Go - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: go-version: ${{ env.GO_VERSION }} cache: true @@ -161,7 +161,7 @@ jobs: BUILDER: ${{ github.actor }}@github-actions - name: Upload assets - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: netronome path: | @@ -186,7 +186,7 @@ jobs: - linux/arm64 steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 @@ -198,7 +198,7 @@ jobs: password: ${{ secrets.GITHUB_TOKEN }} - name: Download web production build - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v7 with: name: web-dist path: web/dist @@ -250,7 +250,7 @@ jobs: touch "/tmp/digests/${digest#sha256:}" - name: Upload image digest - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: docker-digests-${{ steps.digest-prep.outputs.manifest-hash }} path: /tmp/digests/* @@ -264,7 +264,7 @@ jobs: needs: [docker] steps: - name: Download image digests - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v7 with: path: /tmp/digests pattern: docker-digests-*