File tree Expand file tree Collapse file tree 7 files changed +13
-13
lines changed
modules/runners/templates Expand file tree Collapse file tree 7 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 5151 path : results.sarif
5252
5353 - name : Upload SARIF file
54- uses : github/codeql-action/upload-sarif@76621b61decf072c1cee8dd1ce2d2a82d33c17ed # v3.29.5
54+ uses : github/codeql-action/upload-sarif@96f518a34f7a870018057716cc4d7a5c014bd61c # v3.29.5
5555 with :
5656 sarif_file : results.sarif
5757 category : actions-zizmor
Original file line number Diff line number Diff line change @@ -39,12 +39,12 @@ jobs:
3939
4040 # Initializes the CodeQL tools for scanning.
4141 - name : Initialize CodeQL
42- uses : github/codeql-action/init@76621b61decf072c1cee8dd1ce2d2a82d33c17ed # v3.29.5
42+ uses : github/codeql-action/init@96f518a34f7a870018057716cc4d7a5c014bd61c # v3.29.5
4343 with :
4444 languages : ${{ matrix.language }}
4545 build-mode : none
4646
4747 - name : Perform CodeQL Analysis
48- uses : github/codeql-action/analyze@76621b61decf072c1cee8dd1ce2d2a82d33c17ed # v3.29.5
48+ uses : github/codeql-action/analyze@96f518a34f7a870018057716cc4d7a5c014bd61c # v3.29.5
4949 with :
5050 category : " /language:${{matrix.language}}"
Original file line number Diff line number Diff line change 2828 with :
2929 persist-credentials : false
3030 - name : ' Dependency Review'
31- uses : actions/dependency-review-action@da24556b548a50705dd671f47852072ea4c105d9 # v4.7.1
31+ uses : actions/dependency-review-action@bc41886e18ea39df68b1b1245f4184881938e050 # v4.7.2
3232 with :
3333 comment-summary-in-pr : always
Original file line number Diff line number Diff line change 4848 # Upload the results to GitHub's code scanning dashboard (optional).
4949 # Commenting out will disable upload of results to your repo's Code Scanning dashboard
5050 - name : " Upload to code-scanning"
51- uses : github/codeql-action/upload-sarif@76621b61decf072c1cee8dd1ce2d2a82d33c17ed
51+ uses : github/codeql-action/upload-sarif@96f518a34f7a870018057716cc4d7a5c014bd61c
5252 with :
5353 sarif_file : results.sarif
Original file line number Diff line number Diff line change 2121 - uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2222 with :
2323 persist-credentials : false
24- - uses : amannn/action-semantic-pull-request@0723387faaf9b38adef4775cd42cfd5155ed6017 # v5.5.3
24+ - uses : amannn/action-semantic-pull-request@fdd4d3ddf614fbcd8c29e4b106d3bbe0cb2c605d # v6.0.1
2525 name : Check PR for Semantic Commit Message
2626 env :
2727 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 6060 key : tflint-${{ hashFiles('.tflint.hcl') }}
6161 - if : contains(matrix.terraform, '1.5.')
6262 name : Setup TFLint
63- uses : terraform-linters/setup-tflint@90f302c255ef959cbfb4bd10581afecdb7ece3e6 # v4.1.1
63+ uses : terraform-linters/setup-tflint@ae78205cfffec9e8d93fd2b3115c7e9d3166d4b6 # v5.0.0
6464 with :
6565 github_token : ${{ secrets.GITHUB_TOKEN }}
6666 - if : contains(matrix.terraform, '1.5.')
@@ -126,7 +126,7 @@ jobs:
126126 key : tflint-${{ hashFiles('.tflint.hcl') }}
127127 - if : contains(matrix.terraform, '1.3.')
128128 name : Setup TFLint
129- uses : terraform-linters/setup-tflint@90f302c255ef959cbfb4bd10581afecdb7ece3e6 # v4.1.1
129+ uses : terraform-linters/setup-tflint@ae78205cfffec9e8d93fd2b3115c7e9d3166d4b6 # v5.0.0
130130 with :
131131 github_token : ${{ secrets.GITHUB_TOKEN }}
132132 - if : contains(matrix.terraform, '1.3.')
@@ -189,7 +189,7 @@ jobs:
189189 key : tflint-${{ hashFiles('.tflint.hcl') }}
190190 - if : contains(matrix.terraform, '1.5.')
191191 name : Setup TFLint
192- uses : terraform-linters/setup-tflint@90f302c255ef959cbfb4bd10581afecdb7ece3e6 # v4.1.1
192+ uses : terraform-linters/setup-tflint@ae78205cfffec9e8d93fd2b3115c7e9d3166d4b6 # v5.0.0
193193 with :
194194 github_token : ${{ secrets.GITHUB_TOKEN }}
195195 - if : contains(matrix.terraform, '1.5.')
Original file line number Diff line number Diff line change @@ -25,16 +25,16 @@ mkdir -p actions-runner && cd actions-runner
2525
2626if [[ -n " $RUNNER_TARBALL_URL " ]]; then
2727 echo " Downloading the GH Action runner from $RUNNER_TARBALL_URL to $file_name "
28- curl -o $file_name -L " $RUNNER_TARBALL_URL "
28+ curl -s - o $file_name -L " $RUNNER_TARBALL_URL "
2929else
3030 echo " Retrieving TOKEN from AWS API"
31- token=$( curl -f -X PUT " http://169.254.169.254/latest/api/token" -H " X-aws-ec2-metadata-token-ttl-seconds: 180" )
31+ token=" $( curl -s - f -X PUT " http://169.254.169.254/latest/api/token" -H " X-aws-ec2-metadata-token-ttl-seconds: 180" ) "
3232
33- region=$( curl -f -H " X-aws-ec2-metadata-token: $token " -v http://169.254.169.254/latest/dynamic/instance-identity/document | jq -r .region)
33+ region=" $( curl -s - f -H " X-aws-ec2-metadata-token: $token " http://169.254.169.254/latest/dynamic/instance-identity/document | jq -r .region) "
3434 echo " Retrieved REGION from AWS API ($region )"
3535
3636 echo " Downloading the GH Action runner from s3 bucket $s3_location "
37- aws s3 cp " $s3_location " " $file_name " --region " $region "
37+ aws s3 cp " $s3_location " " $file_name " --region " $region " --no-progress
3838fi
3939
4040echo " Un-tar action runner"
You can’t perform that action at this time.
0 commit comments