Skip to content

Commit 1999143

Browse files
committed
ci: bump actions/checkout from v3 to v4
ChangeLog: * .github/workflows/Remark.yml: Use v4. * .github/workflows/bootstrap.yml: Likewise. * .github/workflows/ccpp.yml: Likewise. * .github/workflows/ccpp32alpine.yml: Likewise. * .github/workflows/clang-format.yml: Likewise. * .github/workflows/commit-format.yml: Likewise. * .github/workflows/docker.yml: Likewise. Signed-off-by: Marc Poulhiès <[email protected]>
1 parent 1caf547 commit 1999143

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

.github/workflows/Remark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
# Setup
1717
- name: Checkout
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919

2020
- name: Setup Node.js
2121
uses: actions/setup-node@v3

.github/workflows/bootstrap.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-22.04
1111

1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414

1515
- name: Install Deps
1616
run: |

.github/workflows/ccpp.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-22.04
2323

2424
steps:
25-
- uses: actions/checkout@v3
25+
- uses: actions/checkout@v4
2626

2727
- name: Install Deps
2828
run: |
@@ -106,7 +106,7 @@ jobs:
106106
runs-on: ubuntu-22.04
107107

108108
steps:
109-
- uses: actions/checkout@v3
109+
- uses: actions/checkout@v4
110110

111111
- name: Install Deps
112112
run: |
@@ -191,7 +191,7 @@ jobs:
191191
runs-on: ubuntu-22.04
192192

193193
steps:
194-
- uses: actions/checkout@v3
194+
- uses: actions/checkout@v4
195195

196196
- name: Install Deps
197197
run: |
@@ -274,7 +274,7 @@ jobs:
274274
# otherwise we hang when installing tzdata
275275
DEBIAN_FRONTEND: noninteractive
276276
steps:
277-
- uses: actions/checkout@v3
277+
- uses: actions/checkout@v4
278278

279279
- name: Install Deps
280280
run: |
@@ -353,7 +353,7 @@ jobs:
353353
runs-on: macos-13
354354

355355
steps:
356-
- uses: actions/checkout@v3
356+
- uses: actions/checkout@v4
357357

358358
- name: Install Deps
359359
run: |
@@ -411,7 +411,7 @@ jobs:
411411
runs-on: ubuntu-22.04
412412

413413
steps:
414-
- uses: actions/checkout@v3
414+
- uses: actions/checkout@v4
415415

416416
- name: Install Deps
417417
run: |

.github/workflows/ccpp32alpine.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-22.04
2323

2424
steps:
25-
- uses: actions/checkout@v3
25+
- uses: actions/checkout@v4
2626
- name: Setup Alpine Linux (32-bit)
2727
uses: jirutka/setup-alpine@v1
2828
with:

.github/workflows/clang-format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
steps:
1717
# If updating these steps, please also correspondingly update '../../CONTRIBUTING.md', "Running `clang-format` locally".
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
- name: Copy .clang-format file
2020
run: cp contrib/clang-format .clang-format
2121
- name: Check clang-format

.github/workflows/commit-format.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: check-changelogs
1414

1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
with:
1818
ref: ${{ github.event.pull_request.head.sha }}
1919
fetch-depth: 0
@@ -37,7 +37,7 @@ jobs:
3737
if: ${{ github.base_ref == 'gcc-patch-dev' }} # master commits don't need the gccrs prefix
3838

3939
steps:
40-
- uses: actions/checkout@v3
40+
- uses: actions/checkout@v4
4141
with:
4242
ref: ${{ github.event.pull_request.head.sha }}
4343
fetch-depth: 0
@@ -62,7 +62,7 @@ jobs:
6262
name: check-commit-signoff
6363

6464
steps:
65-
- uses: actions/checkout@v3
65+
- uses: actions/checkout@v4
6666
with:
6767
ref: ${{ github.event.pull_request.head.sha }}
6868
fetch-depth: 0
@@ -115,7 +115,7 @@ jobs:
115115
name: check-issue-reference
116116

117117
steps:
118-
- uses: actions/checkout@v3
118+
- uses: actions/checkout@v4
119119
with:
120120
ref: ${{ github.event.pull_request.head.sha }}
121121
fetch-depth: 0

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212
-
1313
name: Checkout
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515
-
1616
name: Set up QEMU
1717
uses: docker/setup-qemu-action@v2

0 commit comments

Comments
 (0)