Skip to content

Commit 45e60e5

Browse files
committed
Update GitHub Action workflows to actions/checkout@v4
Keep this up to date in all non-security-only branches, because the node.js runtime for older versions might get deprecated in the future and fixing this for all branches at once is easier.
1 parent c1cf002 commit 45e60e5

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

.github/workflows/nightly.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
matrix-include: ${{ steps.set-matrix.outputs.matrix-include }}
1414
windows-matrix-include: ${{ steps.set-matrix.outputs.windows-matrix-include }}
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
with:
1818
# Set fetch-depth to 0 to clone the full repository
1919
# including all branches. This is required to find
@@ -54,7 +54,7 @@ jobs:
5454
runs-on: ubuntu-20.04
5555
steps:
5656
- name: git checkout
57-
uses: actions/checkout@v3
57+
uses: actions/checkout@v4
5858
with:
5959
ref: ${{ matrix.branch.ref }}
6060
- name: Create MSSQL container
@@ -142,7 +142,7 @@ jobs:
142142
MYSQL_ROOT_PASSWORD: root
143143
steps:
144144
- name: git checkout
145-
uses: actions/checkout@v3
145+
uses: actions/checkout@v4
146146
with:
147147
ref: ${{ matrix.branch.ref }}
148148
- name: apt
@@ -204,7 +204,7 @@ jobs:
204204
runs-on: macos-11
205205
steps:
206206
- name: git checkout
207-
uses: actions/checkout@v3
207+
uses: actions/checkout@v4
208208
with:
209209
ref: ${{ matrix.branch.ref }}
210210
- name: brew
@@ -259,7 +259,7 @@ jobs:
259259
runs-on: ubuntu-20.04
260260
steps:
261261
- name: git checkout
262-
uses: actions/checkout@v3
262+
uses: actions/checkout@v4
263263
- name: Create MSSQL container
264264
uses: ./.github/actions/setup-mssql
265265
- name: Create Oracle container
@@ -308,7 +308,7 @@ jobs:
308308
USE_TRACKED_ALLOC: 1
309309
steps:
310310
- name: git checkout
311-
uses: actions/checkout@v3
311+
uses: actions/checkout@v4
312312
with:
313313
ref: ${{ matrix.branch.ref }}
314314
- name: apt
@@ -424,7 +424,7 @@ jobs:
424424
runs-on: ubuntu-20.04
425425
steps:
426426
- name: git checkout
427-
uses: actions/checkout@v3
427+
uses: actions/checkout@v4
428428
with:
429429
ref: ${{ matrix.branch.ref }}
430430
- name: Create MSSQL container
@@ -500,7 +500,7 @@ jobs:
500500
runs-on: ubuntu-22.04
501501
steps:
502502
- name: git checkout
503-
uses: actions/checkout@v3
503+
uses: actions/checkout@v4
504504
with:
505505
ref: ${{ matrix.branch.ref }}
506506
- name: apt
@@ -599,7 +599,7 @@ jobs:
599599
runs-on: ubuntu-20.04
600600
steps:
601601
- name: git checkout
602-
uses: actions/checkout@v3
602+
uses: actions/checkout@v4
603603
with:
604604
ref: ${{ matrix.branch.ref }}
605605
- name: apt
@@ -670,7 +670,7 @@ jobs:
670670
- name: git config
671671
run: git config --global core.autocrlf false && git config --global core.eol lf
672672
- name: git checkout
673-
uses: actions/checkout@v3
673+
uses: actions/checkout@v4
674674
with:
675675
ref: ${{ matrix.branch.ref }}
676676
- name: Setup

.github/workflows/push.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
runs-on: ubuntu-20.04
5252
steps:
5353
- name: git checkout
54-
uses: actions/checkout@v3
54+
uses: actions/checkout@v4
5555
- name: Create MSSQL container
5656
uses: ./.github/actions/setup-mssql
5757
- name: Create Oracle container
@@ -95,7 +95,7 @@ jobs:
9595
runs-on: macos-11
9696
steps:
9797
- name: git checkout
98-
uses: actions/checkout@v3
98+
uses: actions/checkout@v4
9999
- name: brew
100100
uses: ./.github/actions/brew
101101
- name: ccache
@@ -141,7 +141,7 @@ jobs:
141141
- name: git config
142142
run: git config --global core.autocrlf false && git config --global core.eol lf
143143
- name: git checkout
144-
uses: actions/checkout@v3
144+
uses: actions/checkout@v4
145145
- name: Setup
146146
uses: ./.github/actions/setup-windows
147147
- name: Build

0 commit comments

Comments
 (0)