Skip to content

Commit c395030

Browse files
Bump the actions group across 1 directory with 8 updates
Bumps the actions group with 8 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `6.0.0` | `6.0.2` | | [actions/setup-go](https://github.com/actions/setup-go) | `6.1.0` | `6.2.0` | | [actions/setup-node](https://github.com/actions/setup-node) | `4` | `6` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `5.0.0` | `6.0.0` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `3.11.1` | `3.12.0` | | [docker/login-action](https://github.com/docker/login-action) | `3.6.0` | `3.7.0` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `6.0.0` | `7.0.0` | | [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) | `9.1.0` | `9.2.0` | Updates `actions/checkout` from 6.0.0 to 6.0.2 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@1af3b93...de0fac2) Updates `actions/setup-go` from 6.1.0 to 6.2.0 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@4dc6199...7a3fe6c) 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/upload-artifact` from 5.0.0 to 6.0.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@330a01c...b7c566a) Updates `docker/setup-buildx-action` from 3.11.1 to 3.12.0 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](docker/setup-buildx-action@e468171...8d2750c) Updates `docker/login-action` from 3.6.0 to 3.7.0 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@5e57cd1...c94ce9f) Updates `actions/download-artifact` from 6.0.0 to 7.0.0 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@018cc2c...37930b1) Updates `golangci/golangci-lint-action` from 9.1.0 to 9.2.0 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](golangci/golangci-lint-action@e7fa5ac...1e7e51e) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: actions/setup-go dependency-version: 6.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: docker/setup-buildx-action dependency-version: 3.12.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: docker/login-action dependency-version: 3.7.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: actions/download-artifact dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: golangci/golangci-lint-action dependency-version: 9.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 1c7c3df commit c395030

File tree

4 files changed

+46
-46
lines changed

4 files changed

+46
-46
lines changed

.github/workflows/_shared-build.yaml

Lines changed: 37 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@ jobs:
4646
name: Build frontend
4747
runs-on: ubuntu-latest
4848
steps:
49-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
49+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
5050
with:
5151
ref: ${{ inputs.ref }}
5252

5353
- name: Set up Node.js
54-
uses: actions/setup-node@v4
54+
uses: actions/setup-node@v6
5555
with:
5656
node-version: '20'
5757

@@ -60,7 +60,7 @@ jobs:
6060

6161
# upload artifacts
6262
- name: "Upload artifact: frontend"
63-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
63+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
6464
with:
6565
path: ./pkg/web/static/
6666
name: frontend
@@ -70,19 +70,19 @@ jobs:
7070
needs: [build_frontend]
7171
runs-on: ubuntu-latest
7272
steps:
73-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
73+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
7474
with:
7575
ref: ${{ inputs.ref }}
7676

7777
# setup global dependencies
7878
- name: Set up go
79-
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
79+
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
8080
with:
8181
go-version: 1.25.x
8282

8383
# download frontend artifacts
8484
- name: Download frontend artifacts
85-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
85+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
8686
with:
8787
name: frontend
8888
path: ./pkg/web/static
@@ -102,7 +102,7 @@ jobs:
102102

103103
# upload artifacts
104104
- name: "Upload artifact: assertoor_linux_amd64"
105-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
105+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
106106
with:
107107
path: ./bin/*
108108
name: assertoor_linux_amd64
@@ -112,19 +112,19 @@ jobs:
112112
needs: [build_frontend]
113113
runs-on: ubuntu-24.04-arm
114114
steps:
115-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
115+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
116116
with:
117117
ref: ${{ inputs.ref }}
118118

119119
# setup global dependencies
120120
- name: Set up go
121-
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
121+
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
122122
with:
123123
go-version: 1.25.x
124124

125125
# download frontend artifacts
126126
- name: Download frontend artifacts
127-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
127+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
128128
with:
129129
name: frontend
130130
path: ./pkg/web/static
@@ -144,7 +144,7 @@ jobs:
144144

145145
# upload artifacts
146146
- name: "Upload artifact: assertoor_linux_arm64"
147-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
147+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
148148
with:
149149
path: ./bin/*
150150
name: assertoor_linux_arm64
@@ -154,19 +154,19 @@ jobs:
154154
needs: [build_frontend]
155155
runs-on: windows-latest
156156
steps:
157-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
157+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
158158
with:
159159
ref: ${{ inputs.ref }}
160160

161161
# setup global dependencies
162162
- name: Set up go
163-
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
163+
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
164164
with:
165165
go-version: 1.25.x
166166

167167
# download frontend artifacts
168168
- name: Download frontend artifacts
169-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
169+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
170170
with:
171171
name: frontend
172172
path: ./pkg/web/static
@@ -186,7 +186,7 @@ jobs:
186186

187187
# upload artifacts
188188
- name: "Upload artifact: assertoor_windows_amd64"
189-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
189+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
190190
with:
191191
path: ./bin/*
192192
name: assertoor_windows_amd64
@@ -196,19 +196,19 @@ jobs:
196196
needs: [build_frontend]
197197
runs-on: macos-15-intel
198198
steps:
199-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
199+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
200200
with:
201201
ref: ${{ inputs.ref }}
202202

203203
# setup global dependencies
204204
- name: Set up go
205-
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
205+
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
206206
with:
207207
go-version: 1.25.x
208208

209209
# download frontend artifacts
210210
- name: Download frontend artifacts
211-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
211+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
212212
with:
213213
name: frontend
214214
path: ./pkg/web/static
@@ -228,7 +228,7 @@ jobs:
228228

229229
# upload artifacts
230230
- name: "Upload artifact: assertoor_darwin_amd64"
231-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
231+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
232232
with:
233233
path: ./bin/*
234234
name: assertoor_darwin_amd64
@@ -238,19 +238,19 @@ jobs:
238238
needs: [build_frontend]
239239
runs-on: macos-26
240240
steps:
241-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
241+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
242242
with:
243243
ref: ${{ inputs.ref }}
244244

245245
# setup global dependencies
246246
- name: Set up go
247-
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
247+
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
248248
with:
249249
go-version: 1.25.x
250250

251251
# download frontend artifacts
252252
- name: Download frontend artifacts
253-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
253+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
254254
with:
255255
name: frontend
256256
path: ./pkg/web/static
@@ -270,7 +270,7 @@ jobs:
270270

271271
# upload artifacts
272272
- name: "Upload artifact: assertoor_darwin_arm64"
273-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
273+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
274274
with:
275275
path: ./bin/*
276276
name: assertoor_darwin_arm64
@@ -281,7 +281,7 @@ jobs:
281281
if: ${{ inputs.docker }}
282282
runs-on: ubuntu-latest
283283
steps:
284-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
284+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
285285
with:
286286
ref: ${{ inputs.ref }}
287287

@@ -291,16 +291,16 @@ jobs:
291291

292292
# prepare docker
293293
- name: Set up Docker Buildx
294-
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
294+
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
295295
- name: Login to Docker Hub
296-
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
296+
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
297297
with:
298298
username: ${{ secrets.DOCKERHUB_USERNAME }}
299299
password: ${{ secrets.DOCKERHUB_TOKEN }}
300300

301301
# download build artifacts
302302
- name: Download build artifacts
303-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
303+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
304304
with:
305305
name: assertoor_linux_amd64
306306
path: ./bin
@@ -329,7 +329,7 @@ jobs:
329329
if: ${{ inputs.docker }}
330330
runs-on: ubuntu-24.04-arm
331331
steps:
332-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
332+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
333333
with:
334334
ref: ${{ inputs.ref }}
335335
- name: Get build version
@@ -338,16 +338,16 @@ jobs:
338338

339339
# prepare docker
340340
- name: Set up Docker Buildx
341-
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
341+
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
342342
- name: Login to Docker Hub
343-
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
343+
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
344344
with:
345345
username: ${{ secrets.DOCKERHUB_USERNAME }}
346346
password: ${{ secrets.DOCKERHUB_TOKEN }}
347347

348348
# download build artifacts
349349
- name: Download build artifacts
350-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
350+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
351351
with:
352352
name: assertoor_linux_arm64
353353
path: ./bin
@@ -376,7 +376,7 @@ jobs:
376376
if: ${{ inputs.docker }}
377377
runs-on: ubuntu-latest
378378
steps:
379-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
379+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
380380
with:
381381
ref: ${{ inputs.ref }}
382382
- name: Get build version
@@ -385,9 +385,9 @@ jobs:
385385

386386
# prepare docker
387387
- name: Set up Docker Buildx
388-
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
388+
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
389389
- name: Login to Docker Hub
390-
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
390+
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
391391
with:
392392
username: ${{ secrets.DOCKERHUB_USERNAME }}
393393
password: ${{ secrets.DOCKERHUB_TOKEN }}
@@ -411,7 +411,7 @@ jobs:
411411
matrix:
412412
tag: ${{ fromJSON(inputs.additional_tags) }}
413413
steps:
414-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
414+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
415415
with:
416416
ref: ${{ inputs.ref }}
417417
- name: Get build version
@@ -420,9 +420,9 @@ jobs:
420420

421421
# prepare docker
422422
- name: Set up Docker Buildx
423-
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
423+
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
424424
- name: Login to Docker Hub
425-
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
425+
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
426426
with:
427427
username: ${{ secrets.DOCKERHUB_USERNAME }}
428428
password: ${{ secrets.DOCKERHUB_TOKEN }}

.github/workflows/_shared-check.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ jobs:
1515
name: Run code checks
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
18+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1919
with:
2020
ref: ${{ inputs.ref }}
2121

2222
# setup global dependencies
2323
- name: Set up go
24-
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
24+
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
2525
with:
2626
go-version: 1.25.x
2727

@@ -41,7 +41,7 @@ jobs:
4141

4242

4343
- name: Run golangci-lint
44-
uses: golangci/golangci-lint-action@e7fa5ac41e1cf5b7d48e45e42232ce7ada589601 # v9.1.0
44+
uses: golangci/golangci-lint-action@1e7e51e771db61008b38414a730f564565cf7c20 # v9.2.0
4545
with:
4646
# Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version
4747
version: v2.7.2
@@ -85,12 +85,12 @@ jobs:
8585
name: Run frontend checks
8686
runs-on: ubuntu-latest
8787
steps:
88-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
88+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
8989
with:
9090
ref: ${{ inputs.ref }}
9191

9292
- name: Set up Node.js
93-
uses: actions/setup-node@v4
93+
uses: actions/setup-node@v6
9494
with:
9595
node-version: '22'
9696

.github/workflows/build-master.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
runs-on: ubuntu-latest
4242
steps:
4343
- name: Checkout base code
44-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
44+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4545
with:
4646
path: code
4747
- name: Generate wiki from docs
@@ -83,7 +83,7 @@ jobs:
8383
steps:
8484
# download build artifacts
8585
- name: "Download build artifacts"
86-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
86+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
8787

8888
# (re)create snapshot binary release
8989
- name: Update snapshot tag & remove previous snapshot release

.github/workflows/build-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
needs: [build_binaries]
3232
runs-on: ubuntu-latest
3333
steps:
34-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
34+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3535
with:
3636
fetch-depth: 100
3737
ref: ${{ github.sha }}
@@ -52,7 +52,7 @@ jobs:
5252
5353
# download build artifacts
5454
- name: "Download build artifacts"
55-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
55+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
5656

5757
# create draft release
5858
- name: Create latest release

0 commit comments

Comments
 (0)