Skip to content

Commit

Permalink
updating actions/upload-artifact to v4 (quay#3555)
Browse files Browse the repository at this point in the history
v3 has been deprecated and is breaking our CI
  • Loading branch information
bcaton85 authored Jan 9, 2025
1 parent f69716b commit e015964
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -247,13 +247,13 @@ jobs:
env:
REACT_QUAY_APP_API_URL: http://localhost:8080

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: failure()
with:
name: cypress-screenshots
path: web/cypress/screenshots

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: always()
with:
name: cypress-videos
Expand All @@ -266,7 +266,7 @@ jobs:
if: always()

- name: Upload Quay logs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: logs
path: .logs/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/config-tool.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
wait-on-timeout: 120
working-directory: config-tool/pkg/lib/editor
- name: Upload screenshots and videos
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: success() || failure()
with:
name: cypress-artifacts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cut-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
echo "creating change log for tag: $TAG"
/tmp/git-chglog --tag-filter-pattern "v3.*" -o changelog v3.6.0-alpha.4..
- name: Upload Release Archive
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: release
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/oci-distribution-spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -181,14 +181,14 @@ jobs:
if: always()

- name: Upload test results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: oci-test-results
path: .oci-test-results/
if: always()

- name: Upload Quay logs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: logs
path: .logs/
Expand Down

0 comments on commit e015964

Please sign in to comment.