File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -431,15 +431,15 @@ jobs:
431431 uses : actions/checkout@v4
432432
433433 - name : Set ENV Var with Scanner Version
434- uses : mikefarah/yq@v4.44.1
434+ uses : mikefarah/yq@v4.44.2
435435 # Notice: The current version of the scanner is provided via the Chart.yaml to ensure
436436 # there is only one place to edit the version of a scanner
437437 with :
438438 cmd : echo scannerVersion=$(yq e .appVersion scanners/${{ matrix.scanner }}/Chart.yaml) >> $GITHUB_ENV
439439
440440 # extract the supported cpu architectures from the Chart.yaml
441441 - name : Set ENV Var with Supported Platforms
442- uses : mikefarah/yq@v4.44.1
442+ uses : mikefarah/yq@v4.44.2
443443 with :
444444 cmd : echo supportedPlatforms=$(yq e .annotations.supported-platforms scanners/${{ matrix.scanner }}/Chart.yaml) >> $GITHUB_ENV
445445
@@ -562,7 +562,7 @@ jobs:
562562 uses : actions/checkout@v4
563563
564564 - name : Set ENV Var with Demo-Target Version
565- uses : mikefarah/yq@v4.44.1
565+ uses : mikefarah/yq@v4.44.2
566566 # Notice: The current version of the demo-target is provided via the Chart.yaml to ensure
567567 # there is only one place to edit the version of a scanner
568568 with :
Original file line number Diff line number Diff line change @@ -63,14 +63,14 @@ jobs:
6363 # Fetching scanner version from local chart .appVersion attribute
6464 # this would look like 1.1.1 or v1.1.1 depending on the corresponding Docker image tag
6565 - name : Fetch local scanner version
66- uses : mikefarah/yq@v4.44.1
66+ uses : mikefarah/yq@v4.44.2
6767 with :
6868 cmd : echo local=$(yq e .appVersion scanners/${{ matrix.scanner }}/Chart.yaml) >> $GITHUB_ENV
6969
7070 # Fetching scanner version API from local chart .annotations.versionApi attribute
7171 # This would look like https://api.github.com/repos/OWASP/Amass/releases/latest
7272 - name : Fetch scanner's version API
73- uses : mikefarah/yq@v4.44.1
73+ uses : mikefarah/yq@v4.44.2
7474 with :
7575 cmd : echo versionApi=$(yq e .annotations.versionApi scanners/${{ matrix.scanner }}/Chart.yaml) >> $GITHUB_ENV
7676
@@ -145,7 +145,7 @@ jobs:
145145
146146 - name : Upgrade Scanner Helm Chart
147147 if : ${{ env.release != env.local && env.prExists == 0 && env.release != null}}
148- uses : mikefarah/yq@v4.44.1
148+ uses : mikefarah/yq@v4.44.2
149149 with :
150150 # appVersion value in chart is replaced with release value. Empty lines are deleted in the process
151151 cmd : yq e --inplace '.appVersion = "${{env.release}}"' ./scanners/${{ matrix.scanner }}/Chart.yaml
You can’t perform that action at this time.
0 commit comments