Skip to content

Commit 4b782ac

Browse files
Hot fix for pr_trigger workflow
v2 versions of `actions/checkout` and `actions/upload-artifact` are no longer supported.
1 parent 8640594 commit 4b782ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/pr_trigger.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
upload:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v4
1414
- name: Copy event file
1515
run: cp "$GITHUB_EVENT_PATH" ./event.json
1616

@@ -19,7 +19,7 @@ jobs:
1919
# so we just save the file needed to do the review
2020
# in a context with proper access rights
2121
- name: Upload event file as artifact
22-
uses: actions/upload-artifact@v2
22+
uses: actions/upload-artifact@v4
2323
with:
2424
name: event.json
2525
path: event.json

0 commit comments

Comments
 (0)