File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -432,15 +432,15 @@ jobs:
432432 uses : actions/checkout@v4
433433
434434 - name : Set ENV Var with Scanner Version
435- uses : mikefarah/yq@v4.44.2
435+ uses : mikefarah/yq@v4.44.3
436436 # Notice: The current version of the scanner is provided via the Chart.yaml to ensure
437437 # there is only one place to edit the version of a scanner
438438 with :
439439 cmd : echo scannerVersion=$(yq e .appVersion scanners/${{ matrix.scanner }}/Chart.yaml) >> $GITHUB_ENV
440440
441441 # extract the supported cpu architectures from the Chart.yaml
442442 - name : Set ENV Var with Supported Platforms
443- uses : mikefarah/yq@v4.44.2
443+ uses : mikefarah/yq@v4.44.3
444444 with :
445445 cmd : echo supportedPlatforms=$(yq e .annotations.supported-platforms scanners/${{ matrix.scanner }}/Chart.yaml) >> $GITHUB_ENV
446446
@@ -563,7 +563,7 @@ jobs:
563563 uses : actions/checkout@v4
564564
565565 - name : Set ENV Var with Demo-Target Version
566- uses : mikefarah/yq@v4.44.2
566+ uses : mikefarah/yq@v4.44.3
567567 # Notice: The current version of the demo-target is provided via the Chart.yaml to ensure
568568 # there is only one place to edit the version of a scanner
569569 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.2
66+ uses : mikefarah/yq@v4.44.3
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.2
73+ uses : mikefarah/yq@v4.44.3
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.2
148+ uses : mikefarah/yq@v4.44.3
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