Skip to content

Commit

Permalink
chore(deps): update github artifact actions to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Oct 8, 2024
1 parent 20b7eff commit 1b172b5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/integration-tests-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
run: CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o piper -tags release
- name: Upload Piper binary
if: success()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: piper
path: piper
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
echo "matrix=$(go run .github/workflows/parse_integration_test_list.go -file ./integration/github_actions_integration_test_list.yml)" >> "$GITHUB_OUTPUT"
- name: Upload integration tests binary
if: success()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: integration_tests
path: integration_tests
Expand All @@ -134,11 +134,11 @@ jobs:
with:
go-version: ${{ needs.start.outputs.go_version }}
- name: Download Piper binary
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: piper
- name: Download integration tests binary
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: integration_tests
path: ./integration/
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
run: CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o piper -tags release
- name: Upload Piper binary
if: success()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: piper
path: piper
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
echo "matrix=$(go run .github/workflows/parse_integration_test_list.go -file ./integration/github_actions_integration_test_list.yml)" >> "$GITHUB_OUTPUT"
- name: Upload integration tests binary
if: success()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: integration_tests
path: integration_tests
Expand All @@ -106,11 +106,11 @@ jobs:
with:
go-version: ${{ needs.start.outputs.go_version }}
- name: Download Piper binary
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: piper
- name: Download integration tests binary
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: integration_tests
path: ./integration/
Expand Down

0 comments on commit 1b172b5

Please sign in to comment.