8000 Bump the github-actions-version-updates group across 1 directory with 2 updates by dependabot[bot] · Pull Request #2800 · secureCodeBox/secureCodeBox · GitHub
[go: up one dir, main page]

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/license-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ jobs:
uses: actions/checkout@v4

- name: REUSE Compliance Check
uses: fsfe/reuse-action@v4
uses: fsfe/reuse-action@v5
with:
args: --include-submodules lint
6 changes: 3 additions & 3 deletions .github/workflows/release-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -431,15 +431,15 @@ jobs:
uses: actions/checkout@v4

- name: Set ENV Var with Scanner Version
uses: mikefarah/yq@v4.44.3
uses: mikefarah/yq@v4.44.6
# Notice: The current version of the scanner is provided via the Chart.yaml to ensure
# there is only one place to edit the version of a scanner
with:
cmd: echo scannerVersion=$(yq e .appVersion scanners/${{ matrix.scanner }}/Chart.yaml) >> $GITHUB_ENV

# extract the supported cpu architectures from the Chart.yaml
- name: Set ENV Var with Supported Platforms
uses: mikefarah/yq@v4.44.3
uses: mikefarah/yq@v4.44.6
with:
cmd: echo supportedPlatforms=$(yq e .annotations.supported-platforms scanners/${{ matrix.scanner }}/Chart.yaml) >> $GITHUB_ENV

Expand Down Expand Up @@ -562,7 +562,7 @@ jobs:
uses: actions/checkout@v4

- name: Set ENV Var with Demo-Target Version
uses: mikefarah/yq@v4.44.3
uses: mikefarah/yq@v4.44.6
# Notice: The current version of the demo-target is provided via the Chart.yaml to ensure
# there is only one place to edit the version of a scanner
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/scb-bot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,14 +62,14 @@ jobs:
# Fetching scanner version from local chart .appVersion attribute
# this would look like 1.1.1 or v1.1.1 depending on the corresponding Docker image tag
- name: Fetch local scanner version
uses: mikefarah/yq@v4.44.3
uses: mikefarah/yq@v4.44.6
with:
cmd: echo local=$(yq e .appVersion scanners/${{ matrix.scanner }}/Chart.yaml) >> $GITHUB_ENV

# Fetching scanner version API from local chart .annotations.versionApi attribute
# This would look like https://api.github.com/repos/OWASP/Amass/releases/latest
- name: Fetch scanner's version API
uses: mikefarah/yq@v4.44.3
uses: mikefarah/yq@v4.44.6
with:
cmd: echo versionApi=$(yq e .annotations.versionApi scanners/${{ matrix.scanner }}/Chart.yaml) >> $GITHUB_ENV

Expand Down 61A4 Expand Up @@ -144,7 +144,7 @@ jobs:

- name: Upgrade Scanner Helm Chart
if: ${{ env.release != env.local && env.prExists == 0 && env.release != null}}
uses: mikefarah/yq@v4.44.3
uses: mikefarah/yq@v4.44.6
with:
# appVersion value in chart is replaced with release value. Empty lines are deleted in the process
cmd: yq e --inplace '.appVersion = "${{env.release}}"' ./scanners/${{ matrix.scanner }}/Chart.yaml
Expand Down
Loading
0