Skip to content

Commit e06e8eb

Browse files
committed
action.yaml: update to newer Github actions versions
Per https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/, update to use newer versions of github actions so that we stop getting warnings about outdated Node.js versions. Signed-off-by: Jeff Squyres <[email protected]>
1 parent 1ab494e commit e06e8eb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ runs:
2020
using: "composite"
2121
steps:
2222
- name: Check out the code
23-
uses: actions/checkout@v2
23+
uses: actions/checkout@v3
2424
with:
2525
# Get all branches and history
2626
fetch-depth: 0
2727

2828
- name: Setup Python
29-
uses: actions/setup-python@v2
29+
uses: actions/setup-python@v4
3030
with:
3131
python-version: '3.x'
3232

0 commit comments

Comments
 (0)