Skip to content

Commit 6623144

Browse files
committed
Updateto actions/checkout@v3
The relevant difference is that the v3 uses a newer node.js version. GitHub currently warns when using v2, as the node.js version used is deprecated: > Node.js 12 actions are deprecated. For more information see: > https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/. > Please update the following actions to use Node.js 16: actions/checkout, > actions/checkout
1 parent f702f87 commit 6623144

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/nightly.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
branches: ${{ steps.set-matrix.outputs.branches }}
1313
matrix-include: ${{ steps.set-matrix.outputs.matrix-include }}
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v3
1616
with:
1717
# Set fetch-depth to 0 to clone the full repository
1818
# including all branches. This is required to find
@@ -49,7 +49,7 @@ jobs:
4949
timeout-minutes: ${{ matrix.timeout_minutes }}
5050
steps:
5151
- name: git checkout
52-
uses: actions/checkout@v2
52+
uses: actions/checkout@v3
5353
with:
5454
ref: ${{ matrix.branch.ref }}
5555
- name: Create MSSQL container
@@ -115,7 +115,7 @@ jobs:
115115
runs-on: macos-11
116116
steps:
117117
- name: git checkout
118-
uses: actions/checkout@v2
118+
uses: actions/checkout@v3
119119
with:
120120
ref: ${{ matrix.branch.ref }}
121121
- name: brew
@@ -165,7 +165,7 @@ jobs:
165165
runs-on: ubuntu-20.04
166166
steps:
167167
- name: git checkout
168-
uses: actions/checkout@v2
168+
uses: actions/checkout@v3
169169
- name: Create MSSQL container
170170
uses: ./.github/actions/setup-mssql
171171
- name: Create Oracle container
@@ -209,7 +209,7 @@ jobs:
209209
USE_TRACKED_ALLOC: 1
210210
steps:
211211
- name: git checkout
212-
uses: actions/checkout@v2
212+
uses: actions/checkout@v3
213213
with:
214214
ref: ${{ matrix.branch.ref }}
215215
- name: apt
@@ -304,7 +304,7 @@ jobs:
304304
runs-on: ubuntu-20.04
305305
steps:
306306
- name: git checkout
307-
uses: actions/checkout@v2
307+
uses: actions/checkout@v3
308308
with:
309309
ref: ${{ matrix.branch.ref }}
310310
- name: Create MSSQL container
@@ -375,7 +375,7 @@ jobs:
375375
runs-on: ubuntu-22.04
376376
steps:
377377
- name: git checkout
378-
uses: actions/checkout@v2
378+
uses: actions/checkout@v3
379379
with:
380380
ref: ${{ matrix.branch.ref }}
381381
- name: apt

.github/workflows/push.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
runs-on: ubuntu-20.04
3232
steps:
3333
- name: git checkout
34-
uses: actions/checkout@v2
34+
uses: actions/checkout@v3
3535
- name: Create MSSQL container
3636
uses: ./.github/actions/setup-mssql
3737
- name: Create Oracle container
@@ -65,7 +65,7 @@ jobs:
6565
runs-on: macos-11
6666
steps:
6767
- name: git checkout
68-
uses: actions/checkout@v2
68+
uses: actions/checkout@v3
6969
- name: brew
7070
uses: ./.github/actions/brew
7171
- name: ./configure

0 commit comments

Comments
 (0)