Skip to content

Commit fd8a13f

Browse files
committed
ci.yml: upgrade to actions/checkout@v3
This avoids the following warning from GitHub Actions: Node.js 12 actions are deprecated. Please update the following actions to use Node.js 16: actions/checkout@v2.
1 parent 0874175 commit fd8a13f

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/ci.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
name: Test python code
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v2
25+
- uses: actions/checkout@v3
2626
- name: Install dependencies
2727
run: |
2828
sudo apt-get update
@@ -35,7 +35,7 @@ jobs:
3535
name: Build and run benchmark tool (x86_64)
3636
runs-on: ubuntu-latest
3737
steps:
38-
- uses: actions/checkout@v2
38+
- uses: actions/checkout@v3
3939
- name: Install dependencies
4040
run: |
4141
sudo apt-get update
@@ -53,7 +53,7 @@ jobs:
5353
name: Build and run benchmark tool (qemu-arm)
5454
runs-on: ubuntu-latest
5555
steps:
56-
- uses: actions/checkout@v2
56+
- uses: actions/checkout@v3
5757
- name: Install dependencies
5858
run: |
5959
sudo apt-get update
@@ -73,7 +73,7 @@ jobs:
7373
name: Build and run benchmark tool (qemu-aarch64)
7474
runs-on: ubuntu-latest
7575
steps:
76-
- uses: actions/checkout@v2
76+
- uses: actions/checkout@v3
7777
- name: Install dependencies
7878
run: |
7979
sudo apt-get update
@@ -93,7 +93,7 @@ jobs:
9393
name: Build and run benchmark tool (x86_64, valgrind enabled)
9494
runs-on: ubuntu-latest
9595
steps:
96-
- uses: actions/checkout@v2
96+
- uses: actions/checkout@v3
9797
- name: Install dependencies
9898
run: |
9999
sudo apt-get update
@@ -113,7 +113,7 @@ jobs:
113113
name: Build and run benchmark tool (x86_64, UBSAN enabled)
114114
runs-on: ubuntu-latest
115115
steps:
116-
- uses: actions/checkout@v2
116+
- uses: actions/checkout@v3
117117
- name: Install dependencies
118118
run: |
119119
sudo apt-get update
@@ -132,7 +132,7 @@ jobs:
132132
name: Build and run benchmark tool (x86_64, ASAN enabled)
133133
runs-on: ubuntu-latest
134134
steps:
135-
- uses: actions/checkout@v2
135+
- uses: actions/checkout@v3
136136
- name: Install dependencies
137137
run: |
138138
sudo apt-get update

0 commit comments

Comments
 (0)