Skip to content

Commit 82e900d

Browse files
authored
CCM-15257: Bumping Node 20 Actions to Node 24 versions (#279)
* CCM-14499: Pinning all GitHub Actions to SHAs * CCM-14499: Pinning all GitHub Actions to SHAs * CCM-14499: Pinning all GitHub Actions to SHAs * CCM-14499: Pinning all GitHub Actions to SHAs * CCM-14499: Correct configure-aws-credentials v4 SHA * CCM-14499: Correct annotated tag SHA pins * CCM-14499: Pin remaining GitHub Actions refs to SHAs * CCM-14499: Pinning all GitHub Actions to SHAs
1 parent a89e9e1 commit 82e900d

9 files changed

Lines changed: 16 additions & 16 deletions

File tree

.github/actions/acceptance-tests/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ runs:
6060
ENVIRONMENT: ${{ inputs.targetEnvironment }}
6161
- name: Archive integration test results
6262
if: ${{ inputs.testType == 'integration' }}
63-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
63+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6
6464
with:
6565
name: Integration test report
6666
path: "tests/playwright/playwright-report"

.github/actions/build-docs/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ runs:
5555
shell: bash
5656

5757
- name: Upload artifact
58-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
58+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6
5959
with:
6060
path: "artifact.tar"
6161
name: schemas-${{ inputs.version }}

.github/actions/build-schemas/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ runs:
88
using: "composite"
99
steps:
1010
- name: Checkout
11-
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
11+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
1212
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
1313
with:
1414
node-version: 18
@@ -28,7 +28,7 @@ runs:
2828
shell: bash
2929

3030
- name: Upload artifact
31-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
31+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6
3232
with:
3333
path: "artifact.tar"
3434
name: schemas-${{ inputs.version }}

.github/actions/create-lines-of-code-report/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ runs:
3333
run: zip lines-of-code-report.json.zip lines-of-code-report.json
3434
- name: "Upload CLOC report as an artefact"
3535
if: ${{ !env.ACT }}
36-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
36+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6
3737
with:
3838
name: lines-of-code-report.json.zip
3939
path: ./lines-of-code-report.json.zip
@@ -45,7 +45,7 @@ runs:
4545
echo "secrets_exist=${{ inputs.idp_aws_report_upload_role_name != '' && inputs.idp_aws_report_upload_bucket_endpoint != '' }}" >> $GITHUB_OUTPUT
4646
- name: "Authenticate to send the report"
4747
if: steps.check.outputs.secrets_exist == 'true'
48-
uses: aws-actions/configure-aws-credentials@7474bc4690e29a8392af63c5b98e7449536d5c3a # v4
48+
uses: aws-actions/configure-aws-credentials@ec61189d14ec14c8efccab744f656cffd0e33f37 # v6
4949
with:
5050
role-to-assume: arn:aws:iam::${{ inputs.idp_aws_report_upload_account_id }}:role/${{ inputs.idp_aws_report_upload_role_name }}
5151
aws-region: ${{ inputs.idp_aws_report_upload_region }}

.github/actions/scan-dependencies/action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ runs:
3333
run: zip sbom-repository-report.json.zip sbom-repository-report.json
3434
- name: "Upload SBOM report as an artefact"
3535
if: ${{ !env.ACT }}
36-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
36+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6
3737
with:
3838
name: sbom-repository-report.json.zip
3939
path: ./sbom-repository-report.json.zip
@@ -49,7 +49,7 @@ runs:
4949
run: zip vulnerabilities-repository-report.json.zip vulnerabilities-repository-report.json
5050
- name: "Upload vulnerabilities report as an artefact"
5151
if: ${{ !env.ACT }}
52-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
52+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6
5353
with:
5454
name: vulnerabilities-repository-report.json.zip
5555
path: ./vulnerabilities-repository-report.json.zip
@@ -60,7 +60,7 @@ runs:
6060
run: echo "secrets_exist=${{ inputs.idp_aws_report_upload_role_name != '' && inputs.idp_aws_report_upload_bucket_endpoint != '' }}" >> $GITHUB_OUTPUT
6161
- name: "Authenticate to send the reports"
6262
if: steps.check.outputs.secrets_exist == 'true'
63-
uses: aws-actions/configure-aws-credentials@7474bc4690e29a8392af63c5b98e7449536d5c3a # v4
63+
uses: aws-actions/configure-aws-credentials@ec61189d14ec14c8efccab744f656cffd0e33f37 # v6
6464
with:
6565
role-to-assume: arn:aws:iam::${{ inputs.idp_aws_report_upload_account_id }}:role/${{ inputs.idp_aws_report_upload_role_name }}
6666
aws-region: ${{ inputs.idp_aws_report_upload_region }}

.github/workflows/cicd-3-deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ jobs:
135135
run: |
136136
gh release download ${{steps.get-asset-version.outputs.release_version}} -p jekyll-docs-*.tar --output artifact.tar
137137
138-
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
138+
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6
139139
with:
140140
name: jekyll-docs-${{steps.get-asset-version.outputs.release_version}}
141141
path: artifact.tar

.github/workflows/scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
6060
# format to the repository Actions tab.
6161
- name: "Upload artifact"
62-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
62+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6
6363
with:
6464
name: SARIF file
6565
path: results.sarif

.github/workflows/stage-1-commit.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ jobs:
158158
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
159159
# steps:
160160
# - name: "Checkout code"
161-
# uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
161+
# uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
162162
# - name: "Setup ASDF"
163163
# uses: asdf-vm/actions/setup@b7bcd026f18772e44fe1026d729e1611cc435d47 # v4
164164
# - name: "Trivy IaC Scan"
@@ -175,7 +175,7 @@ jobs:
175175
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
176176
# steps:
177177
# - name: "Checkout code"
178-
# uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
178+
# uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
179179
# - name: "Setup ASDF"
180180
# uses: asdf-vm/actions/setup@1902764435ca0dd2f3388eea723a4f92a4eb8302
181181
# - name: "Trivy Package Scan"

.github/workflows/stage-2-test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,19 +109,19 @@ jobs:
109109
run: |
110110
make test-unit
111111
- name: "Save the result of fast test suite"
112-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
112+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6
113113
with:
114114
name: unit-tests
115115
path: "**/.reports/unit"
116116
include-hidden-files: true
117117
if: always()
118118
- name: "Save the result of code coverage"
119-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
119+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6
120120
with:
121121
name: code-coverage-report
122122
path: ".reports/lcov.info"
123123
- name: "Save Python coverage reports"
124-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
124+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6
125125
with:
126126
name: python-coverage-reports
127127
path: |

0 commit comments

Comments
 (0)