Skip to content

Commit fdb17f0

Browse files
dependabot[bot]J12934
authored andcommitted
Bump the github-actions-version-updates group across 1 directory with 5 updates
Bumps the github-actions-version-updates group with 5 updates in the /.github/workflows directory: | Package | From | To | | --- | --- | --- | | [actions/setup-java](https://github.com/actions/setup-java) | `4.7.1` | `5.0.0` | | [actions/setup-go](https://github.com/actions/setup-go) | `5.5.0` | `6.0.0` | | [actions/setup-python](https://github.com/actions/setup-python) | `5.6.0` | `6.0.0` | | [github/codeql-action](https://github.com/github/codeql-action) | `3.29.2` | `3.30.1` | | [mikefarah/yq](https://github.com/mikefarah/yq) | `4.47.1` | `4.47.2` | Updates `actions/setup-java` from 4.7.1 to 5.0.0 - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](actions/setup-java@c5195ef...dded088) Updates `actions/setup-go` from 5.5.0 to 6.0.0 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@d35c59a...4469467) Updates `actions/setup-python` from 5.6.0 to 6.0.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@a26af69...e797f83) Updates `github/codeql-action` from 3.29.2 to 3.30.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@181d5ee...f1f6e5f) Updates `mikefarah/yq` from 4.47.1 to 4.47.2 - [Release notes](https://github.com/mikefarah/yq/releases) - [Changelog](https://github.com/mikefarah/yq/blob/master/release_notes.txt) - [Commits](mikefarah/yq@f03c9dc...6251e95) --- updated-dependencies: - dependency-name: actions/setup-java dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-version-updates - dependency-name: actions/setup-go dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-version-updates - dependency-name: actions/setup-python dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-version-updates - dependency-name: github/codeql-action dependency-version: 3.30.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-version-updates - dependency-name: mikefarah/yq dependency-version: 4.47.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions-version-updates ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 1f03ae1 commit fdb17f0

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ jobs:
154154
with:
155155
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
156156
- name: Set up JDK 17
157-
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
157+
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5.0.0
158158
with:
159159
distribution: "temurin" # required Java distribution
160160
java-version: "17" # The JDK version to make available on the path.
@@ -194,7 +194,7 @@ jobs:
194194
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
195195

196196
- name: Go Setup
197-
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
197+
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
198198
with:
199199
go-version-file: "operator/go.mod"
200200

@@ -233,7 +233,7 @@ jobs:
233233
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
234234

235235
- name: Go Setup
236-
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
236+
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
237237
with:
238238
go-version-file: "auto-discovery/kubernetes/go.mod"
239239

@@ -273,7 +273,7 @@ jobs:
273273
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
274274

275275
- name: Setup Python Version
276-
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
276+
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
277277
with:
278278
python-version: "${{ env.PYTHON_VERSION }}"
279279

@@ -350,7 +350,7 @@ jobs:
350350
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
351351

352352
- name: Go Setup
353-
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
353+
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
354354
with:
355355
go-version-file: "auto-discovery/cloud-aws/go.mod"
356356

@@ -731,7 +731,7 @@ jobs:
731731
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
732732

733733
- name: Set up Go
734-
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
734+
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
735735
with:
736736
go-version-file: "scbctl/go.mod"
737737

.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@181d5eefc20863364f96762470ba6f862bdef56b # v3.29.2
36+
uses: github/codeql-action/upload-sarif@f1f6e5f6af878fb37288ce1c627459e94dbf7d01 # v3.30.1
3737
with:
3838
sarif_file: results.sarif

.github/workflows/release-build.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -425,15 +425,15 @@ jobs:
425425
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
426426

427427
- name: Set ENV Var with Scanner Version
428-
uses: mikefarah/yq@f03c9dc599c37bfcaf533427211d05e51e6fee64 # v4.47.1
428+
uses: mikefarah/yq@6251e95af8df3505def48c71f3119836701495d6 # v4.47.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@f03c9dc599c37bfcaf533427211d05e51e6fee64 # v4.47.1
436+
uses: mikefarah/yq@6251e95af8df3505def48c71f3119836701495d6 # v4.47.2
437437
with:
438438
cmd: echo supportedPlatforms=$(yq e .annotations.supported-platforms scanners/${{ matrix.scanner }}/Chart.yaml) >> $GITHUB_ENV
439439

@@ -555,7 +555,7 @@ jobs:
555555
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
556556

557557
- name: Set ENV Var with Demo-Target Version
558-
uses: mikefarah/yq@f03c9dc599c37bfcaf533427211d05e51e6fee64 # v4.47.1
558+
uses: mikefarah/yq@6251e95af8df3505def48c71f3119836701495d6 # v4.47.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:

.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@f03c9dc599c37bfcaf533427211d05e51e6fee64 # v4.47.1
64+
uses: mikefarah/yq@6251e95af8df3505def48c71f3119836701495d6 # v4.47.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@f03c9dc599c37bfcaf533427211d05e51e6fee64 # v4.47.1
71+
uses: mikefarah/yq@6251e95af8df3505def48c71f3119836701495d6 # v4.47.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@f03c9dc599c37bfcaf533427211d05e51e6fee64 # v4.47.1
146+
uses: mikefarah/yq@6251e95af8df3505def48c71f3119836701495d6 # v4.47.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)