Skip to content

Commit 8ed8436

Browse files
chore(deps): update github artifact actions to v4
1 parent 758d10b commit 8ed8436

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/integration-tests-pr.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
run: CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o piper -tags release
8383
- name: Upload Piper binary
8484
if: success()
85-
uses: actions/upload-artifact@v3
85+
uses: actions/upload-artifact@v4
8686
with:
8787
name: piper
8888
path: piper
@@ -110,7 +110,7 @@ jobs:
110110
echo "matrix=$(go run .github/workflows/parse_integration_test_list.go -file ./integration/github_actions_integration_test_list.yml)" >> "$GITHUB_OUTPUT"
111111
- name: Upload integration tests binary
112112
if: success()
113-
uses: actions/upload-artifact@v3
113+
uses: actions/upload-artifact@v4
114114
with:
115115
name: integration_tests
116116
path: integration_tests
@@ -134,11 +134,11 @@ jobs:
134134
with:
135135
go-version: ${{ needs.start.outputs.go_version }}
136136
- name: Download Piper binary
137-
uses: actions/download-artifact@v3
137+
uses: actions/download-artifact@v4
138138
with:
139139
name: piper
140140
- name: Download integration tests binary
141-
uses: actions/download-artifact@v3
141+
uses: actions/download-artifact@v4
142142
with:
143143
name: integration_tests
144144
path: ./integration/

.github/workflows/integration-tests.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
run: CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o piper -tags release
5454
- name: Upload Piper binary
5555
if: success()
56-
uses: actions/upload-artifact@v3
56+
uses: actions/upload-artifact@v4
5757
with:
5858
name: piper
5959
path: piper
@@ -82,7 +82,7 @@ jobs:
8282
echo "matrix=$(go run .github/workflows/parse_integration_test_list.go -file ./integration/github_actions_integration_test_list.yml)" >> "$GITHUB_OUTPUT"
8383
- name: Upload integration tests binary
8484
if: success()
85-
uses: actions/upload-artifact@v3
85+
uses: actions/upload-artifact@v4
8686
with:
8787
name: integration_tests
8888
path: integration_tests
@@ -106,11 +106,11 @@ jobs:
106106
with:
107107
go-version: ${{ needs.start.outputs.go_version }}
108108
- name: Download Piper binary
109-
uses: actions/download-artifact@v3
109+
uses: actions/download-artifact@v4
110110
with:
111111
name: piper
112112
- name: Download integration tests binary
113-
uses: actions/download-artifact@v3
113+
uses: actions/download-artifact@v4
114114
with:
115115
name: integration_tests
116116
path: ./integration/

0 commit comments

Comments
 (0)