Skip to content

Commit bed5a9f

Browse files
committed
update artifacts GitHub actions to v4
1 parent a9b3e54 commit bed5a9f

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

ephemeral/shutdown/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ runs:
1313
using: composite
1414
steps:
1515
- name: Download PR artifact
16-
uses: actions/download-artifact@v3
16+
uses: actions/download-artifact@v4
1717
with:
1818
name: pr
1919

ephemeral/startup/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ runs:
5151
}
5252
5353
- name: Download PR artifact
54-
uses: actions/download-artifact@v3
54+
uses: actions/download-artifact@v4
5555
with:
5656
name: pr
5757

@@ -102,7 +102,7 @@ runs:
102102
echo "AWS_ENDPOINT_URL=$endpointUrl" >> $GITHUB_ENV
103103
104104
- name: Upload preview instance URL
105-
uses: actions/upload-artifact@v3
105+
uses: actions/upload-artifact@v4
106106
with:
107107
name: pr
108108
path: ./ls-preview-url.txt

finish/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ runs:
2020
# Try to get pr artifact from current workflow
2121
- name: Download current PR artifact
2222
id: get-pr-artifact
23-
uses: actions/download-artifact@v3
23+
uses: actions/download-artifact@v4
2424
continue-on-error: true
2525
with:
2626
name: pr

local/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ runs:
1717
- name: Download current workflow's Local State artifact
1818
id: get-state-artifact
1919
if: ${{ inputs.action == 'load' }}
20-
uses: actions/download-artifact@v3
20+
uses: actions/download-artifact@v4
2121
continue-on-error: true
2222
with:
2323
name: ${{ inputs.name }}
@@ -48,7 +48,7 @@ runs:
4848
ACTION: "${{ inputs.action }}"
4949
5050
- name: Upload LocalStack State
51-
uses: actions/upload-artifact@v3
51+
uses: actions/upload-artifact@v4
5252
if: ${{ inputs.action == 'save' }}
5353
with:
5454
name: ${{ inputs.name }}

prepare/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ runs:
1616
run: echo ${{ github.event.number }} > ./pr-id.txt
1717

1818
- name: Upload PR number
19-
uses: actions/upload-artifact@v3
19+
uses: actions/upload-artifact@v4
2020
with:
2121
name: pr
2222
path: ./pr-id.txt

0 commit comments

Comments
 (0)