Skip to content

Commit 72859b5

Browse files
Bump the github-actions-version-updates group across 1 directory with 4 updates
Bumps the github-actions-version-updates group with 4 updates in the /.github/workflows directory: [actions/cache](https://github.com/actions/cache), [github/codeql-action](https://github.com/github/codeql-action), [docker/login-action](https://github.com/docker/login-action) and [mikefarah/yq](https://github.com/mikefarah/yq). Updates `actions/cache` from 5.0.2 to 5.0.3 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@8b402f5...cdf6c1f) Updates `github/codeql-action` from 4.32.0 to 4.32.1 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@b20883b...6bc82e0) 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 `mikefarah/yq` from 4.50.1 to 4.52.2 - [Release notes](https://github.com/mikefarah/yq/releases) - [Changelog](https://github.com/mikefarah/yq/blob/master/release_notes.txt) - [Commits](mikefarah/yq@065b200...2be0094) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions-version-updates - dependency-name: github/codeql-action dependency-version: 4.32.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions-version-updates - dependency-name: docker/login-action dependency-version: 3.7.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-version-updates - dependency-name: mikefarah/yq dependency-version: 4.52.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-version-updates ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent c65bb04 commit 72859b5

File tree

4 files changed

+19
-19
lines changed

4 files changed

+19
-19
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,13 +161,13 @@ jobs:
161161
java-package: jdk # (jre, jdk, or jdk+fx) - defaults to jdk
162162
architecture: x64 # (x64 or x86) - defaults to x64
163163
- name: Cache SonarCloud packages
164-
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
164+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
165165
with:
166166
path: ~/.sonar/cache
167167
key: ${{ runner.os }}-sonar
168168
restore-keys: ${{ runner.os }}-sonar
169169
- name: Cache Gradle packages
170-
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
170+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
171171
with:
172172
path: ~/.gradle/caches
173173
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}

.github/workflows/oss-scorecard.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ jobs:
3333

3434
# Upload the results to GitHub's code scanning dashboard.
3535
- name: "Upload to code-scanning"
36-
uses: github/codeql-action/upload-sarif@b20883b0cd1f46c72ae0ba6d1090936928f9fa30 # v4.32.0
36+
uses: github/codeql-action/upload-sarif@6bc82e05fd0ea64601dd4b465378bbcf57de0314 # v4.32.1
3737
with:
3838
sarif_file: results.sarif

.github/workflows/release-build.yaml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
4949

5050
- name: Login to DockerHub
51-
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
51+
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
5252
with:
5353
username: ${{ secrets.DOCKER_USERNAME }}
5454
password: ${{ secrets.DOCKER_TOKEN }}
@@ -95,7 +95,7 @@ jobs:
9595
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
9696

9797
- name: Login to DockerHub
98-
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
98+
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
9999
with:
100100
username: ${{ secrets.DOCKER_USERNAME }}
101101
password: ${{ secrets.DOCKER_TOKEN }}
@@ -142,7 +142,7 @@ jobs:
142142
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
143143

144144
- name: Login to DockerHub
145-
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
145+
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
146146
with:
147147
username: ${{ secrets.DOCKER_USERNAME }}
148148
password: ${{ secrets.DOCKER_TOKEN }}
@@ -195,7 +195,7 @@ jobs:
195195
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
196196

197197
- name: Login to DockerHub
198-
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
198+
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
199199
with:
200200
username: ${{ secrets.DOCKER_USERNAME }}
201201
password: ${{ secrets.DOCKER_TOKEN }}
@@ -248,7 +248,7 @@ jobs:
248248
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
249249

250250
- name: Login to DockerHub
251-
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
251+
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
252252
with:
253253
username: ${{ secrets.DOCKER_USERNAME }}
254254
password: ${{ secrets.DOCKER_TOKEN }}
@@ -300,7 +300,7 @@ jobs:
300300
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
301301

302302
- name: Login to DockerHub
303-
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
303+
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
304304
with:
305305
username: ${{ secrets.DOCKER_USERNAME }}
306306
password: ${{ secrets.DOCKER_TOKEN }}
@@ -364,7 +364,7 @@ jobs:
364364
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
365365

366366
- name: Login to DockerHub
367-
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
367+
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
368368
with:
369369
username: ${{ secrets.DOCKER_USERNAME }}
370370
password: ${{ secrets.DOCKER_TOKEN }}
@@ -425,15 +425,15 @@ jobs:
425425
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
426426

427427
- name: Set ENV Var with Scanner Version
428-
uses: mikefarah/yq@065b200af9851db0d5132f50bc10b1406ea5c0a8 # v4.50.1
428+
uses: mikefarah/yq@2be0094729a1006f61e8339ce9934bfb3cbb549f # v4.52.2
429429
# Notice: The current version of the scanner is provided via the Chart.yaml to ensure
430430
# there is only one place to edit the version of a scanner
431431
with:
432432
cmd: echo scannerVersion=$(yq e .appVersion scanners/${{ matrix.scanner }}/Chart.yaml) >> $GITHUB_ENV
433433

434434
# extract the supported cpu architectures from the Chart.yaml
435435
- name: Set ENV Var with Supported Platforms
436-
uses: mikefarah/yq@065b200af9851db0d5132f50bc10b1406ea5c0a8 # v4.50.1
436+
uses: mikefarah/yq@2be0094729a1006f61e8339ce9934bfb3cbb549f # v4.52.2
437437
with:
438438
cmd: echo supportedPlatforms=$(yq e .annotations.supported-platforms scanners/${{ matrix.scanner }}/Chart.yaml) >> $GITHUB_ENV
439439

@@ -450,7 +450,7 @@ jobs:
450450
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
451451

452452
- name: Login to DockerHub
453-
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
453+
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
454454
with:
455455
username: ${{ secrets.DOCKER_USERNAME }}
456456
password: ${{ secrets.DOCKER_TOKEN }}
@@ -507,7 +507,7 @@ jobs:
507507
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
508508

509509
- name: Login to DockerHub
510-
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
510+
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
511511
with:
512512
username: ${{ secrets.DOCKER_USERNAME }}
513513
password: ${{ secrets.DOCKER_TOKEN }}
@@ -555,7 +555,7 @@ jobs:
555555
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
556556

557557
- name: Set ENV Var with Demo-Target Version
558-
uses: mikefarah/yq@065b200af9851db0d5132f50bc10b1406ea5c0a8 # v4.50.1
558+
uses: mikefarah/yq@2be0094729a1006f61e8339ce9934bfb3cbb549f # v4.52.2
559559
# Notice: The current version of the demo-target is provided via the Chart.yaml to ensure
560560
# there is only one place to edit the version of a scanner
561561
with:
@@ -575,7 +575,7 @@ jobs:
575575
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
576576

577577
- name: Login to DockerHub
578-
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
578+
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
579579
with:
580580
username: ${{ secrets.DOCKER_USERNAME }}
581581
password: ${{ secrets.DOCKER_TOKEN }}

.github/workflows/scb-bot.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,14 @@ jobs:
6161
# Fetching scanner version from local chart .appVersion attribute
6262
# this would look like 1.1.1 or v1.1.1 depending on the corresponding Docker image tag
6363
- name: Fetch local scanner version
64-
uses: mikefarah/yq@065b200af9851db0d5132f50bc10b1406ea5c0a8 # v4.50.1
64+
uses: mikefarah/yq@2be0094729a1006f61e8339ce9934bfb3cbb549f # v4.52.2
6565
with:
6666
cmd: echo local=$(yq e .appVersion scanners/${{ matrix.scanner }}/Chart.yaml) >> $GITHUB_ENV
6767

6868
# Fetching scanner version API from local chart .annotations.versionApi attribute
6969
# This would look like https://api.github.com/repos/projectdiscovery/nuclei/releases/latest
7070
- name: Fetch scanner's version API
71-
uses: mikefarah/yq@065b200af9851db0d5132f50bc10b1406ea5c0a8 # v4.50.1
71+
uses: mikefarah/yq@2be0094729a1006f61e8339ce9934bfb3cbb549f # v4.52.2
7272
with:
7373
cmd: echo versionApi=$(yq e .annotations.versionApi scanners/${{ matrix.scanner }}/Chart.yaml) >> $GITHUB_ENV
7474

@@ -143,7 +143,7 @@ jobs:
143143
144144
- name: Upgrade Scanner Helm Chart
145145
if: ${{ env.release != env.local && env.prExists == 0 && env.release != null}}
146-
uses: mikefarah/yq@065b200af9851db0d5132f50bc10b1406ea5c0a8 # v4.50.1
146+
uses: mikefarah/yq@2be0094729a1006f61e8339ce9934bfb3cbb549f # v4.52.2
147147
with:
148148
# appVersion value in chart is replaced with release value. Empty lines are deleted in the process
149149
cmd: yq e --inplace '.appVersion = "${{env.release}}"' ./scanners/${{ matrix.scanner }}/Chart.yaml

0 commit comments

Comments
 (0)