Hot fix for pr_trigger workflow

v2 versions of `actions/checkout` and `actions/upload-artifact` are no longer supported.
This commit is contained in:
Mike Thompson 2025-01-14 16:49:31 -05:00 committed by GitHub
parent 8640594d0d
commit 4b782ac0d7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -10,7 +10,7 @@ jobs:
upload:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Copy event file
run: cp "$GITHUB_EVENT_PATH" ./event.json
@ -19,7 +19,7 @@ jobs:
# so we just save the file needed to do the review
# in a context with proper access rights
- name: Upload event file as artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: event.json
path: event.json