Skip to content

Commit f19e26e

Browse files
fix Node.js 12 actions are deprecated in GH workflow actions
Signed-off-by: msivasubramaniaan <msivasub@redhat.com>
1 parent fbe9731 commit f19e26e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/check-crc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1313
steps:
1414
- name: Check Out Code
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v3
1616
- name: Get latest CRC version
1717
run: |
1818
echo "REPO_CRC_VERSION=$(cat src/tools.json | jq -r .crc.crcVersion)" >> $GITHUB_ENV

.github/workflows/check-odo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1212
steps:
1313
- name: Check Out Code
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v3
1515
- name: Get latest ODO version
1616
run: |
1717
echo "REPO_ODO_VERSION=$(cat src/tools.json | jq -r .odo.version)" >> $GITHUB_ENV

.github/workflows/continuous-integration-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
# Steps represent a sequence of tasks that will be executed as part of the job
2525
steps:
2626
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
27-
- uses: actions/checkout@v2
27+
- uses: actions/checkout@v3
2828

2929
# Set up Node
3030
- name: Use Node.js ${{ matrix.node }}

0 commit comments

Comments
 (0)