Skip to content

Commit 4b8fccb

Browse files
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](actions/checkout@v5...v6) Updates `actions/setup-go` from 5 to 6 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@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](actions/cache@v4...v5) Updates `actions/upload-artifact` from 4 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v6) Updates `actions/setup-node` from 4 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v4...v6) Updates `actions/download-artifact` from 5 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@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] <support@github.com>
1 parent cf6b7dc commit 4b8fccb

2 files changed

Lines changed: 17 additions & 17 deletions

File tree

.github/workflows/claude.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
id-token: write
2626
steps:
2727
- name: Checkout repository
28-
uses: actions/checkout@v5
28+
uses: actions/checkout@v6
2929
with:
3030
fetch-depth: 1
3131

.github/workflows/release.yml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -39,16 +39,16 @@ jobs:
3939
runs-on: ubuntu-latest
4040
steps:
4141
- name: Checkout
42-
uses: actions/checkout@v5
42+
uses: actions/checkout@v6
4343

4444
- name: Set up Go
45-
uses: actions/setup-go@v5
45+
uses: actions/setup-go@v6
4646
with:
4747
go-version: ${{ env.GO_VERSION }}
4848
cache: true
4949

5050
- name: Cache Go modules
51-
uses: actions/cache@v4
51+
uses: actions/cache@v5
5252
with:
5353
path: ~/go/pkg/mod
5454
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
@@ -64,7 +64,7 @@ jobs:
6464
go tool cover -html=coverage.out -o coverage.html
6565
6666
- name: Upload coverage reports
67-
uses: actions/upload-artifact@v4
67+
uses: actions/upload-artifact@v6
6868
with:
6969
name: coverage-report
7070
path: |
@@ -76,20 +76,20 @@ jobs:
7676
runs-on: ubuntu-latest
7777
steps:
7878
- name: Checkout
79-
uses: actions/checkout@v5
79+
uses: actions/checkout@v6
8080
with:
8181
fetch-depth: 0
8282

8383
- name: Set up Node
84-
uses: actions/setup-node@v4
84+
uses: actions/setup-node@v6
8585
with:
8686
node-version: ${{ env.NODE_VERSION }}
8787

8888
- name: Set up corepack
8989
run: npm install -g corepack@latest && corepack enable
9090

9191
- name: Set up cache
92-
uses: actions/setup-node@v4
92+
uses: actions/setup-node@v6
9393
with:
9494
cache: "pnpm"
9595
cache-dependency-path: web/pnpm-lock.yaml
@@ -111,7 +111,7 @@ jobs:
111111
run: CI= pnpm run build
112112

113113
- name: Upload web production build
114-
uses: actions/upload-artifact@v4
114+
uses: actions/upload-artifact@v6
115115
with:
116116
name: web-dist
117117
path: web/dist
@@ -122,18 +122,18 @@ jobs:
122122
needs: [test, web]
123123
steps:
124124
- name: Checkout
125-
uses: actions/checkout@v5
125+
uses: actions/checkout@v6
126126
with:
127127
fetch-depth: 0
128128

129129
- name: Download web production build
130-
uses: actions/download-artifact@v5
130+
uses: actions/download-artifact@v7
131131
with:
132132
name: web-dist
133133
path: web/dist
134134

135135
- name: Set up Go
136-
uses: actions/setup-go@v5
136+
uses: actions/setup-go@v6
137137
with:
138138
go-version: ${{ env.GO_VERSION }}
139139
cache: true
@@ -161,7 +161,7 @@ jobs:
161161
BUILDER: ${{ github.actor }}@github-actions
162162

163163
- name: Upload assets
164-
uses: actions/upload-artifact@v4
164+
uses: actions/upload-artifact@v6
165165
with:
166166
name: netronome
167167
path: |
@@ -186,7 +186,7 @@ jobs:
186186
- linux/arm64
187187
steps:
188188
- name: Checkout
189-
uses: actions/checkout@v5
189+
uses: actions/checkout@v6
190190
with:
191191
fetch-depth: 0
192192

@@ -198,7 +198,7 @@ jobs:
198198
password: ${{ secrets.GITHUB_TOKEN }}
199199

200200
- name: Download web production build
201-
uses: actions/download-artifact@v5
201+
uses: actions/download-artifact@v7
202202
with:
203203
name: web-dist
204204
path: web/dist
@@ -250,7 +250,7 @@ jobs:
250250
touch "/tmp/digests/${digest#sha256:}"
251251
252252
- name: Upload image digest
253-
uses: actions/upload-artifact@v4
253+
uses: actions/upload-artifact@v6
254254
with:
255255
name: docker-digests-${{ steps.digest-prep.outputs.manifest-hash }}
256256
path: /tmp/digests/*
@@ -264,7 +264,7 @@ jobs:
264264
needs: [docker]
265265
steps:
266266
- name: Download image digests
267-
uses: actions/download-artifact@v5
267+
uses: actions/download-artifact@v7
268268
with:
269269
path: /tmp/digests
270270
pattern: docker-digests-*

0 commit comments

Comments
 (0)