Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update github artifact actions to v4 (major) #5102

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading