Skip to content

Commit 4cc794e

Browse files
chore(deps): bump the github-actions group with 6 updates
Bumps the github-actions group with 6 updates: | Package | From | To | | --- | --- | --- | | [docker/login-action](https://github.com/docker/login-action) | `4.1.0` | `4.2.0` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `6.0.0` | `6.0.1` | | [chainguard-dev/actions](https://github.com/chainguard-dev/actions) | `1.6.19` | `1.6.21` | | [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action) | `4.0.0` | `4.1.0` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `4.0.0` | `4.1.0` | | [goreleaser/goreleaser-action](https://github.com/goreleaser/goreleaser-action) | `7.2.1` | `7.2.2` | Updates `docker/login-action` from 4.1.0 to 4.2.0 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v4.1.0...v4.2.0) Updates `codecov/codecov-action` from 6.0.0 to 6.0.1 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@57e3a13...e79a696) Updates `chainguard-dev/actions` from 1.6.19 to 1.6.21 - [Release notes](https://github.com/chainguard-dev/actions/releases) - [Commits](chainguard-dev/actions@c69a264...05fbd38) Updates `docker/setup-qemu-action` from 4.0.0 to 4.1.0 - [Release notes](https://github.com/docker/setup-qemu-action/releases) - [Commits](docker/setup-qemu-action@ce36039...0611638) Updates `docker/setup-buildx-action` from 4.0.0 to 4.1.0 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](docker/setup-buildx-action@4d04d5d...d7f5e7f) Updates `goreleaser/goreleaser-action` from 7.2.1 to 7.2.2 - [Release notes](https://github.com/goreleaser/goreleaser-action/releases) - [Commits](goreleaser/goreleaser-action@1a80836...5daf1e9) --- updated-dependencies: - dependency-name: docker/login-action dependency-version: 4.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: codecov/codecov-action dependency-version: 6.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: chainguard-dev/actions dependency-version: 1.6.21 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: docker/setup-qemu-action dependency-version: 4.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: docker/setup-buildx-action dependency-version: 4.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: goreleaser/goreleaser-action dependency-version: 7.2.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 37b9f3c commit 4cc794e

6 files changed

Lines changed: 28 additions & 28 deletions

File tree

.github/workflows/build-test.yaml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
steps:
5959
- uses: "actions/checkout@v6"
6060
- uses: "authzed/actions/setup-go@main"
61-
- uses: "docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121" # v4.1.0
61+
- uses: "docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee" # v4.2.0
6262
with:
6363
username: "${{ env.DOCKERHUB_PUBLIC_USER }}"
6464
password: "${{ env.DOCKERHUB_PUBLIC_ACCESS_TOKEN }}"
@@ -80,7 +80,7 @@ jobs:
8080
- name: "Unit tests with coverage"
8181
run: "go run mage.go test:unitCover"
8282
- name: "Coverage"
83-
uses: "codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2" # v6.0.0
83+
uses: "codecov/codecov-action@e79a6962e0d4c0c17b229090214935d2e33f8354" # v6.0.1
8484
with:
8585
files: "./coverage.txt"
8686
token: "${{ secrets.CODECOV_TOKEN }}"
@@ -108,14 +108,14 @@ jobs:
108108
steps:
109109
- uses: "actions/checkout@v6"
110110
- uses: "authzed/actions/setup-go@main"
111-
- uses: "docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121" # v4.1.0
111+
- uses: "docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee" # v4.2.0
112112
with:
113113
username: "${{ env.DOCKERHUB_PUBLIC_USER }}"
114114
password: "${{ env.DOCKERHUB_PUBLIC_ACCESS_TOKEN }}"
115115
- name: "Integration tests with coverage"
116116
run: "go run mage.go test:integrationCover"
117117
- name: "Coverage"
118-
uses: "codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2" # v6.0.0
118+
uses: "codecov/codecov-action@e79a6962e0d4c0c17b229090214935d2e33f8354" # v6.0.1
119119
with:
120120
files: "./coverage.txt"
121121
token: "${{ secrets.CODECOV_TOKEN }}"
@@ -136,7 +136,7 @@ jobs:
136136
- uses: "authzed/actions/setup-go@main"
137137
if: |
138138
needs.paths-filter.outputs.codechange == 'true'
139-
- uses: "docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121" # v4.1.0
139+
- uses: "docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee" # v4.2.0
140140
if: |
141141
needs.paths-filter.outputs.codechange == 'true'
142142
with:
@@ -149,7 +149,7 @@ jobs:
149149
- name: "Coverage"
150150
if: |
151151
needs.paths-filter.outputs.codechange == 'true'
152-
uses: "codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2" # v6.0.0
152+
uses: "codecov/codecov-action@e79a6962e0d4c0c17b229090214935d2e33f8354" # v6.0.1
153153
with:
154154
files: "./coverage.txt"
155155
token: "${{ secrets.CODECOV_TOKEN }}"
@@ -170,7 +170,7 @@ jobs:
170170
- uses: "authzed/actions/setup-go@main"
171171
if: |
172172
needs.paths-filter.outputs.codechange == 'true'
173-
- uses: "docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121" # v4.1.0
173+
- uses: "docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee" # v4.2.0
174174
if: |
175175
needs.paths-filter.outputs.codechange == 'true'
176176
with:
@@ -183,7 +183,7 @@ jobs:
183183
- name: "Coverage"
184184
if: |
185185
needs.paths-filter.outputs.codechange == 'true'
186-
uses: "codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2" # v6.0.0
186+
uses: "codecov/codecov-action@e79a6962e0d4c0c17b229090214935d2e33f8354" # v6.0.1
187187
with:
188188
files: "./coverage.txt"
189189
token: "${{ secrets.CODECOV_TOKEN }}"
@@ -205,7 +205,7 @@ jobs:
205205
- uses: "authzed/actions/setup-go@main"
206206
if: |
207207
needs.paths-filter.outputs.codechange == 'true'
208-
- uses: "docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121" # v4.1.0
208+
- uses: "docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee" # v4.2.0
209209
if: |
210210
needs.paths-filter.outputs.codechange == 'true'
211211
with:
@@ -218,7 +218,7 @@ jobs:
218218
- name: "Coverage"
219219
if: |
220220
needs.paths-filter.outputs.codechange == 'true'
221-
uses: "codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2" # v6.0.0
221+
uses: "codecov/codecov-action@e79a6962e0d4c0c17b229090214935d2e33f8354" # v6.0.1
222222
with:
223223
files: "./coverage.txt"
224224
token: "${{ secrets.CODECOV_TOKEN }}"
@@ -240,7 +240,7 @@ jobs:
240240
- uses: "authzed/actions/setup-go@main"
241241
if: |
242242
needs.paths-filter.outputs.codechange == 'true'
243-
- uses: "docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121" # v4.1.0
243+
- uses: "docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee" # v4.2.0
244244
if: |
245245
needs.paths-filter.outputs.codechange == 'true'
246246
with:
@@ -253,7 +253,7 @@ jobs:
253253
- name: "Coverage"
254254
if: |
255255
needs.paths-filter.outputs.codechange == 'true'
256-
uses: "codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2" # v6.0.0
256+
uses: "codecov/codecov-action@e79a6962e0d4c0c17b229090214935d2e33f8354" # v6.0.1
257257
with:
258258
files: "./coverage.txt"
259259
token: "${{ secrets.CODECOV_TOKEN }}"
@@ -279,7 +279,7 @@ jobs:
279279
- uses: "authzed/actions/setup-go@main"
280280
if: |
281281
needs.paths-filter.outputs.codechange == 'true'
282-
- uses: "docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121" # v4.1.0
282+
- uses: "docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee" # v4.2.0
283283
if: |
284284
needs.paths-filter.outputs.codechange == 'true'
285285
with:
@@ -292,7 +292,7 @@ jobs:
292292
- name: "Coverage"
293293
if: |
294294
needs.paths-filter.outputs.codechange == 'true'
295-
uses: "codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2" # v6.0.0
295+
uses: "codecov/codecov-action@e79a6962e0d4c0c17b229090214935d2e33f8354" # v6.0.1
296296
with:
297297
files: "./coverage.txt"
298298
token: "${{ secrets.CODECOV_TOKEN }}"
@@ -318,7 +318,7 @@ jobs:
318318
- uses: "authzed/actions/setup-go@main"
319319
if: |
320320
needs.paths-filter.outputs.codechange == 'true'
321-
- uses: "docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121" # v4.1.0
321+
- uses: "docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee" # v4.2.0
322322
if: |
323323
needs.paths-filter.outputs.codechange == 'true'
324324
with:
@@ -331,7 +331,7 @@ jobs:
331331
- name: "Coverage"
332332
if: |
333333
needs.paths-filter.outputs.codechange == 'true'
334-
uses: "codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2" # v6.0.0
334+
uses: "codecov/codecov-action@e79a6962e0d4c0c17b229090214935d2e33f8354" # v6.0.1
335335
with:
336336
files: "./coverage.txt"
337337
token: "${{ secrets.CODECOV_TOKEN }}"
@@ -415,7 +415,7 @@ jobs:
415415
- uses: "authzed/actions/setup-go@main"
416416
- name: "Generate Protos"
417417
run: "go run mage.go gen:proto"
418-
- uses: "chainguard-dev/actions/nodiff@c69a264ec2a5934c3186c618f368fc1c86f16cff" # main
418+
- uses: "chainguard-dev/actions/nodiff@05fbd381f7c158bd33c9bbf3a28f67852269fdf8" # main
419419
with:
420420
path: ""
421421
fixup-command: "go run mage.go gen:proto"

.github/workflows/lint.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- uses: "authzed/actions/setup-go@main"
3636
- name: "Generate docs"
3737
run: "go run mage.go gen:docs"
38-
- uses: "chainguard-dev/actions/nodiff@c69a264ec2a5934c3186c618f368fc1c86f16cff" # main
38+
- uses: "chainguard-dev/actions/nodiff@05fbd381f7c158bd33c9bbf3a28f67852269fdf8" # main
3939
with:
4040
path: ""
4141
fixup-command: "mage gen:docs"
@@ -47,7 +47,7 @@ jobs:
4747
- uses: "authzed/actions/setup-go@main"
4848
- name: "Lint Everything"
4949
run: "go run mage.go lint:all"
50-
- uses: "chainguard-dev/actions/nodiff@c69a264ec2a5934c3186c618f368fc1c86f16cff" # main
50+
- uses: "chainguard-dev/actions/nodiff@05fbd381f7c158bd33c9bbf3a28f67852269fdf8" # main
5151
with:
5252
path: ""
5353
fixup-command: "go run mage.go lint:all"

.github/workflows/nightly.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ jobs:
2828
quayio_token: "${{ secrets.QUAYIO_PASSWORD }}"
2929
github_token: "${{ secrets.GITHUB_TOKEN }}"
3030
dockerhub_token: "${{ secrets.DOCKERHUB_ACCESS_TOKEN }}"
31-
- uses: "docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a" # v4.0.0
32-
- uses: "docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd" # v4.0.0
33-
- uses: "goreleaser/goreleaser-action@1a80836c5c9d9e5755a25cb59ec6f45a3b5f41a8" # v7.2.1
31+
- uses: "docker/setup-qemu-action@06116385d9baf250c9f4dcb4858b16962ea869c3" # v4.1.0
32+
- uses: "docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5" # v4.1.0
33+
- uses: "goreleaser/goreleaser-action@5daf1e915a5f0af01ddbcd89a43b8061ff4f1a89" # v7.2.2
3434
with:
3535
distribution: "goreleaser-pro"
3636
version: "2.15.2"

.github/workflows/release-windows.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
quayio_token: "${{ secrets.QUAYIO_PASSWORD }}"
2828
github_token: "${{ secrets.GITHUB_TOKEN }}"
2929
dockerhub_token: "${{ secrets.DOCKERHUB_ACCESS_TOKEN }}"
30-
- uses: "goreleaser/goreleaser-action@1a80836c5c9d9e5755a25cb59ec6f45a3b5f41a8" # v7.2.1
30+
- uses: "goreleaser/goreleaser-action@5daf1e915a5f0af01ddbcd89a43b8061ff4f1a89" # v7.2.2
3131
with:
3232
distribution: "goreleaser-pro"
3333
# NOTE: keep in sync with goreleaser version in other job.

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ jobs:
3737
quayio_token: "${{ secrets.QUAYIO_PASSWORD }}"
3838
github_token: "${{ secrets.GITHUB_TOKEN }}"
3939
dockerhub_token: "${{ secrets.DOCKERHUB_ACCESS_TOKEN }}"
40-
- uses: "docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a" # v4.0.0
41-
- uses: "docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd" # v4.0.0
42-
- uses: "goreleaser/goreleaser-action@1a80836c5c9d9e5755a25cb59ec6f45a3b5f41a8" # v7.2.1
40+
- uses: "docker/setup-qemu-action@06116385d9baf250c9f4dcb4858b16962ea869c3" # v4.1.0
41+
- uses: "docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5" # v4.1.0
42+
- uses: "goreleaser/goreleaser-action@5daf1e915a5f0af01ddbcd89a43b8061ff4f1a89" # v7.2.2
4343
with:
4444
distribution: "goreleaser-pro"
4545
# NOTE: keep in sync with goreleaser version in other job.

.github/workflows/security.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
# trivy does not flag an old SpiceDB version
5252
fetch-depth: 0
5353
- uses: "authzed/actions/setup-go@main"
54-
- uses: "docker/login-action@v4.1.0" # v3.7.0
54+
- uses: "docker/login-action@v4.2.0" # v3.7.0
5555
with:
5656
username: "${{ env.DOCKERHUB_PUBLIC_USER }}"
5757
password: "${{ env.DOCKERHUB_PUBLIC_ACCESS_TOKEN }}"
@@ -71,7 +71,7 @@ jobs:
7171
env:
7272
TRIVY_DB_REPOSITORY: "public.ecr.aws/aquasecurity/trivy-db"
7373
TRIVY_JAVA_DB_REPOSITORY: "public.ecr.aws/aquasecurity/trivy-java-db"
74-
- uses: "goreleaser/goreleaser-action@1a80836c5c9d9e5755a25cb59ec6f45a3b5f41a8" # v7.2.1
74+
- uses: "goreleaser/goreleaser-action@5daf1e915a5f0af01ddbcd89a43b8061ff4f1a89" # v7.2.2
7575
id: "goreleaser"
7676
with:
7777
distribution: "goreleaser-pro"

0 commit comments

Comments
 (0)