Skip to content

Commit

Permalink
upgrade upload-/download-artifact actions
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewazores committed Jul 26, 2024
1 parent 06a46ee commit 63e9d13
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/pr-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -212,11 +212,11 @@ jobs:
git diff -U10 --exit-code /home/runner/work/cryostat/cryostat/schema/schema.graphql > /home/runner/work/graphql.diff
echo "graphql_status=$?" >> "$GITHUB_OUTPUT"
echo "graphql_diff_file=graphql.diff" >> "$GITHUB_OUTPUT"
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: openapi-diff
path: /home/runner/work/openapi.diff
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: graphql-diff
path: /home/runner/work/graphql.diff
Expand All @@ -227,7 +227,7 @@ jobs:
permissions:
pull-requests: write
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: openapi-diff
- name: Comment schema check result
Expand All @@ -253,7 +253,7 @@ jobs:
permissions:
pull-requests: write
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: graphql-diff
- name: Comment schema check result
Expand Down Expand Up @@ -293,12 +293,12 @@ jobs:
git_user_signingkey: true
git_commit_gpgsign: true
- name: Download OpenAPI diff
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: openapi-diff
path: diffs
- name: Download GraphQL diff
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: graphql-diff
path: diffs
Expand Down

0 comments on commit 63e9d13

Please sign in to comment.