Skip to content

Commit 78ce220

Browse files
deps: update GitHub action dependencies (#3259)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 1edc196 commit 78ce220

File tree

16 files changed

+49
-49
lines changed

16 files changed

+49
-49
lines changed

.github/actions/artifact_download/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ runs:
2828
run: echo "directory=$(mktemp -d)" >> "$GITHUB_OUTPUT"
2929

3030
- name: Download the artifact
31-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
31+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
3232
with:
3333
name: ${{ inputs.name }}
3434
path: ${{ steps.tempdir.outputs.directory }}

.github/actions/artifact_upload/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ runs:
6969
done
7070
7171
- name: Upload archive as artifact
72-
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
72+
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4
7373
with:
7474
name: ${{ inputs.name }}
7575
path: ${{ steps.tempdir.outputs.directory }}/archive.7z

.github/actions/download_release_binaries/action.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,51 +5,51 @@ runs:
55
using: "composite"
66
steps:
77
- name: Download CLI binaries darwin-amd64
8-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
8+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
99
with:
1010
name: constellation-darwin-amd64
1111

1212
- name: Download CLI binaries darwin-arm64
13-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
13+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
1414
with:
1515
name: constellation-darwin-arm64
1616

1717
- name: Download CLI binaries linux-amd64
18-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
18+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
1919
with:
2020
name: constellation-linux-amd64
2121

2222
- name: Download CLI binaries linux-arm64
23-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
23+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
2424
with:
2525
name: constellation-linux-arm64
2626

2727
- name: Download CLI binaries windows-amd64
28-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
28+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
2929
with:
3030
name: constellation-windows-amd64
3131

3232
- name: Download Terraform module
33-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
33+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
3434
with:
3535
name: terraform-module
3636

3737
- name: Download Terraform provider binary darwin-amd64
38-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
38+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
3939
with:
4040
name: terraform-provider-constellation-darwin-amd64
4141

4242
- name: Download Terraform provider binary darwin-arm64
43-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
43+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
4444
with:
4545
name: terraform-provider-constellation-darwin-arm64
4646

4747
- name: Download Terraform provider binary linux-amd64
48-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
48+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
4949
with:
5050
name: terraform-provider-constellation-linux-amd64
5151

5252
- name: Download Terraform provider binary linux-arm64
53-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
53+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
5454
with:
5555
name: terraform-provider-constellation-linux-arm64

.github/actions/e2e_benchmark/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ runs:
3232

3333
steps:
3434
- name: Setup python
35-
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
35+
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1
3636
with:
3737
python-version: "3.10"
3838

.github/actions/upload_terraform_module/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ runs:
1515
zip -r terraform-module.zip terraform-module
1616
1717
- name: Upload artifact
18-
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
18+
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4
1919
with:
2020
name: terraform-module
2121
path: terraform-module.zip

.github/workflows/aws-snp-launchmeasurement.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

2828
- name: Download Firmware release
2929
id: download-firmware
30-
uses: robinraju/release-downloader@c39a3b234af58f0cf85888573d361fb6fa281534 # v1.10
30+
uses: robinraju/release-downloader@a96f54c1b5f5e09e47d9504526e96febd949d4c2 # v1.11
3131
with:
3232
repository: aws/uefi
3333
latest: true

.github/workflows/build-ccm-gcp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
fetch-depth: 0
3030

3131
- name: Setup Go environment
32-
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
32+
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
3333
with:
3434
go-version: "1.22.5"
3535
cache: false

.github/workflows/build-os-image-scheduled.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
token: ${{ secrets.CI_COMMIT_PUSH_PR }}
6969

7070
- name: Setup Go environment
71-
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
71+
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
7272
with:
7373
go-version: "1.22.5"
7474
cache: false

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ jobs:
3838

3939
- name: Setup Go environment
4040
if: matrix.language == 'go'
41-
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
41+
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
4242
with:
4343
go-version: "1.22.5"
4444
cache: false
4545

4646
- name: Initialize CodeQL
47-
uses: github/codeql-action/init@23acc5c183826b7a8a97bce3cecc52db901f8251 # v3.25.10
47+
uses: github/codeql-action/init@4fa2a7953630fd2f3fb380f21be14ede0169dd4f # v3.25.12
4848
with:
4949
languages: ${{ matrix.language }}
5050

@@ -63,6 +63,6 @@ jobs:
6363
echo "::endgroup::"
6464
6565
- name: Perform CodeQL Analysis
66-
uses: github/codeql-action/analyze@23acc5c183826b7a8a97bce3cecc52db901f8251 # v3.25.10
66+
uses: github/codeql-action/analyze@4fa2a7953630fd2f3fb380f21be14ede0169dd4f # v3.25.12
6767
with:
6868
category: "/language:${{ matrix.language }}"

.github/workflows/draft-release.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
cosignPassword: ${{ inputs.key == 'release' && secrets.COSIGN_PASSWORD || secrets.COSIGN_DEV_PASSWORD }}
9393

9494
- name: Upload CLI as artifact (unix)
95-
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
95+
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4
9696
if : ${{ matrix.os != 'windows' }}
9797
with:
9898
name: constellation-${{ matrix.os }}-${{ matrix.arch }}
@@ -101,7 +101,7 @@ jobs:
101101
build/constellation-${{ matrix.os }}-${{ matrix.arch }}.sig
102102
103103
- name: Upload CLI as artifact (windows)
104-
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
104+
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4
105105
if : ${{ matrix.os == 'windows' }}
106106
with:
107107
name: constellation-${{ matrix.os }}-${{ matrix.arch }}
@@ -149,15 +149,15 @@ jobs:
149149
targetArch: ${{ matrix.arch }}
150150

151151
- name: Upload Terraform Provider Binary as artifact (unix)
152-
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
152+
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4
153153
if : ${{ matrix.os != 'windows' }}
154154
with:
155155
name: terraform-provider-constellation-${{ matrix.os }}-${{ matrix.arch }}
156156
path: |
157157
build/terraform-provider-constellation-${{ matrix.os }}-${{ matrix.arch }}
158158
159159
- name: Upload Terraform Provider Binary as artifact (windows)
160-
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
160+
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4
161161
if : ${{ matrix.os == 'windows' }}
162162
with:
163163
name: terraform-provider-constellation-${{ matrix.os }}-${{ matrix.arch }}
@@ -227,7 +227,7 @@ jobs:
227227
uses: ./.github/actions/download_release_binaries
228228

229229
- name: Download CLI SBOM
230-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
230+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
231231
with:
232232
name: constellation.spdx.sbom
233233

@@ -296,13 +296,13 @@ jobs:
296296
COSIGN_PASSWORD: ${{ inputs.key == 'release' && secrets.COSIGN_PASSWORD || secrets.COSIGN_DEV_PASSWORD }}
297297

298298
- name: Upload Constellation CLI SBOM
299-
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
299+
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4
300300
with:
301301
name: constellation.spdx.sbom
302302
path: constellation.spdx.sbom
303303

304304
- name: Upload Constellation CLI SBOM's signature
305-
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
305+
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4
306306
with:
307307
name: constellation.spdx.sbom.sig
308308
path: constellation.spdx.sbom.sig
@@ -340,12 +340,12 @@ jobs:
340340
uses: ./.github/actions/download_release_binaries
341341

342342
- name: Download CLI SBOM
343-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
343+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
344344
with:
345345
name: constellation.spdx.sbom
346346

347347
- name: Download provenance
348-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
348+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
349349
with:
350350
name: ${{ needs.provenance.outputs.provenance-name }}
351351

@@ -418,17 +418,17 @@ jobs:
418418
uses: ./.github/actions/download_release_binaries
419419

420420
- name: Download CLI SBOM
421-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
421+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
422422
with:
423423
name: constellation.spdx.sbom
424424

425425
- name: Download Constellation CLI SBOM's signature
426-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
426+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
427427
with:
428428
name: constellation.spdx.sbom.sig
429429

430430
- name: Download Constellation provenance
431-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
431+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
432432
with:
433433
name: ${{ needs.provenance.outputs.provenance-name }}
434434

@@ -472,7 +472,7 @@ jobs:
472472
- name: Create release with artifacts
473473
id: create-release
474474
# GitHub endorsed release project. See: https://github.com/actions/create-release
475-
uses: softprops/action-gh-release@a74c6b72af54cfa997e81df42d94703d6313a2d0 # v2.0.6
475+
uses: softprops/action-gh-release@fb2d03176f42a1f0dd433ca263f314051d3edd44 # v2.0.7
476476
with:
477477
draft: true
478478
generate_release_notes: true
@@ -487,7 +487,7 @@ jobs:
487487
terraform-module.zip
488488
489489
- name: Create Terraform provider release with artifcats
490-
uses: softprops/action-gh-release@a74c6b72af54cfa997e81df42d94703d6313a2d0 # v2.0.6
490+
uses: softprops/action-gh-release@fb2d03176f42a1f0dd433ca263f314051d3edd44 # v2.0.7
491491
with:
492492
draft: true
493493
generate_release_notes: false

0 commit comments

Comments
 (0)