File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -429,15 +429,15 @@ jobs:
429429 uses : actions/checkout@v4
430430
431431 - name : Set ENV Var with Scanner Version
432- uses : mikefarah/yq@v4.45.2
432+ uses : mikefarah/yq@v4.45.4
433433 # Notice: The current version of the scanner is provided via the Chart.yaml to ensure
434434 # there is only one place to edit the version of a scanner
435435 with :
436436 cmd : echo scannerVersion=$(yq e .appVersion scanners/${{ matrix.scanner }}/Chart.yaml) >> $GITHUB_ENV
437437
438438 # extract the supported cpu architectures from the Chart.yaml
439439 - name : Set ENV Var with Supported Platforms
440- uses : mikefarah/yq@v4.45.2
440+ uses : mikefarah/yq@v4.45.4
441441 with :
442442 cmd : echo supportedPlatforms=$(yq e .annotations.supported-platforms scanners/${{ matrix.scanner }}/Chart.yaml) >> $GITHUB_ENV
443443
@@ -560,7 +560,7 @@ jobs:
560560 uses : actions/checkout@v4
561561
562562 - name : Set ENV Var with Demo-Target Version
563- uses : mikefarah/yq@v4.45.2
563+ uses : mikefarah/yq@v4.45.4
564564 # Notice: The current version of the demo-target is provided via the Chart.yaml to ensure
565565 # there is only one place to edit the version of a scanner
566566 with :
Original file line number Diff line number Diff 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@v4.45.2
64+ uses : mikefarah/yq@v4.45.4
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/OWASP/Amass/releases/latest
7070 - name : Fetch scanner's version API
71- uses : mikefarah/yq@v4.45.2
71+ uses : mikefarah/yq@v4.45.4
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@v4.45.2
146+ uses : mikefarah/yq@v4.45.4
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
You can’t perform that action at this time.
0 commit comments