Skip to content

Commit 02431d1

Browse files
committed
build: Update GitHub Action versions for provenance and download
1 parent 74f0b76 commit 02431d1

2 files changed

Lines changed: 29 additions & 31 deletions

File tree

.github/actions/artifacts-attest/action.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,9 @@ description: 'Artifacts attestation'
44
runs:
55
using: 'composite'
66
steps:
7-
-
8-
name: 'Attestation'
9-
uses: actions/attest-build-provenance@v2.0.1
10-
with:
11-
subject-path: |
12-
${{ github.workspace }}/artifacts/packages/native
13-
${{ github.workspace }}/artifacts/packages/nuget
7+
- name: 'Attestation'
8+
uses: actions/attest-build-provenance@v4.1.0
9+
with:
10+
subject-path: |
11+
${{ github.workspace }}/artifacts/packages/native
12+
${{ github.workspace }}/artifacts/packages/nuget

.github/actions/artifacts-restore/action.yml

Lines changed: 23 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -4,27 +4,26 @@ description: 'Artifacts restore'
44
runs:
55
using: 'composite'
66
steps:
7-
-
8-
uses: actions/download-artifact@v4
9-
name: Download native linux packages
10-
with:
11-
name: native-Linux
12-
path: ${{ github.workspace }}/artifacts/packages/native
13-
-
14-
uses: actions/download-artifact@v4
15-
name: Download native windows packages
16-
with:
17-
name: native-Windows
18-
path: ${{ github.workspace }}/artifacts/packages/native
19-
-
20-
uses: actions/download-artifact@v4
21-
name: Download native macos packages
22-
with:
23-
name: native-macOS
24-
path: ${{ github.workspace }}/artifacts/packages/native
25-
-
26-
uses: actions/download-artifact@v4
27-
name: Download nuget packages
28-
with:
29-
name: nuget
30-
path: ${{ github.workspace }}/artifacts/packages/nuget
7+
- uses: actions/download-artifact@v8
8+
name: Download native linux packages
9+
with:
10+
name: native-Linux
11+
path: ${{ github.workspace }}/artifacts/packages/native
12+
13+
- uses: actions/download-artifact@v8
14+
name: Download native windows packages
15+
with:
16+
name: native-Windows
17+
path: ${{ github.workspace }}/artifacts/packages/native
18+
19+
- uses: actions/download-artifact@v8
20+
name: Download native macos packages
21+
with:
22+
name: native-macOS
23+
path: ${{ github.workspace }}/artifacts/packages/native
24+
25+
- uses: actions/download-artifact@v8
26+
name: Download nuget packages
27+
with:
28+
name: nuget
29+
path: ${{ github.workspace }}/artifacts/packages/nuget

0 commit comments

Comments
 (0)