Skip to content

Commit c443a5f

Browse files
committed
Update github actions to newer versions
As per [0], we need to move to something newer than checkout@v2 in order to avoid unsafe node versions. This moves from checkout@v2 to checkout@v4. [0] https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-using-versioned-actions Signed-off-by: Peter Jones <[email protected]>
1 parent 701f7be commit c443a5f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/pullrequest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676

7777
steps:
7878
- name: Checkout
79-
uses: actions/checkout@v2
79+
uses: actions/checkout@v4
8080
with:
8181
# otherwise we are testing target branch instead of the PR branch (see pull_request_target trigger)
8282
ref: ${{ github.event.pull_request.head.sha }}
@@ -150,7 +150,7 @@ jobs:
150150

151151
steps:
152152
- name: Checkout
153-
uses: actions/checkout@v2
153+
uses: actions/checkout@v4
154154
with:
155155
# otherwise we are testing target branch instead of the PR branch (see pull_request_target trigger)
156156
ref: ${{ github.event.pull_request.head.sha }}

0 commit comments

Comments
 (0)