Skip to content

Commit 909211a

Browse files
committed
update upload/download-artifact version
1 parent 4e42dc8 commit 909211a

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

local/action.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
name: 'Save/Load LocalStack state'
2+
description: 'Save or load LocalStack state'
23

34
inputs:
45
name:
@@ -17,7 +18,7 @@ runs:
1718
- name: Download current workflow's Local State artifact
1819
id: get-state-artifact
1920
if: ${{ inputs.action == 'load' }}
20-
uses: actions/download-artifact@v4
21+
uses: actions/download-artifact@v6
2122
continue-on-error: true
2223
with:
2324
name: ${{ inputs.name }}
@@ -48,7 +49,7 @@ runs:
4849
ACTION: "${{ inputs.action }}"
4950
5051
- name: Upload LocalStack State
51-
uses: actions/upload-artifact@v4
52+
uses: actions/upload-artifact@v6
5253
if: ${{ inputs.action == 'save' }}
5354
with:
5455
name: ${{ inputs.name }}

prepare/action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
name: Start CI Build
2+
description: Start CI Build
23

34
inputs:
45
github-token:
@@ -16,7 +17,7 @@ runs:
1617
run: echo ${{ github.event.number }} > ./pr-id.txt
1718

1819
- name: Upload PR number
19-
uses: actions/upload-artifact@v4
20+
uses: actions/upload-artifact@v6
2021
with:
2122
name: pr-id
2223
path: ./pr-id.txt

0 commit comments

Comments
 (0)