Skip to content

Commit 4ce492a

Browse files
committed
ci: update actions/checkout in GHA workflows to v6
1 parent 07469f1 commit 4ce492a

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/alpine.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
git config --global --add safe.directory "$GITHUB_WORKSPACE"
1616
# Checks-out the repository under $GITHUB_WORKSPACE.
1717
- name: Checkout
18-
uses: actions/checkout@v5
18+
uses: actions/checkout@v6
1919
with:
2020
fetch-depth: 0
2121
submodules: 'recursive'

.github/workflows/alpine_arm.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
rm -rf node20/*
3131
mkdir node20/bin
3232
ln -s /usr/bin/node node20/bin/node
33-
# Fake Node.js 24 for actions/checkout@v5.
33+
# Fake Node.js 24 for actions/checkout@v6.
3434
# Currently, Alpine 3.22 has Node.js 22.16.0, but that seems to work,
3535
# too, because it looks like checkout is not using any stuff specific
3636
# to Node.js 24.
@@ -39,7 +39,7 @@ jobs:
3939
ln -s /usr/bin/node node24/bin/node
4040
# Checks-out the repository under $GITHUB_WORKSPACE.
4141
- name: Checkout
42-
uses: actions/checkout@v5
42+
uses: actions/checkout@v6
4343
with:
4444
fetch-depth: 0
4545
submodules: 'recursive'

.github/workflows/clang.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
# Checks-out the repository under $GITHUB_WORKSPACE.
1414
- name: Checkout
15-
uses: actions/checkout@v5
15+
uses: actions/checkout@v6
1616
with:
1717
submodules: 'recursive'
1818
persist-credentials: false

.github/workflows/gcc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
# Checks-out the repository under $GITHUB_WORKSPACE.
1414
- name: Checkout
15-
uses: actions/checkout@v5
15+
uses: actions/checkout@v6
1616
with:
1717
submodules: 'recursive'
1818
persist-credentials: false

.github/workflows/msys2.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212
# Checks-out the repository under $GITHUB_WORKSPACE.
1313
- name: Checkout
14-
uses: actions/checkout@v5
14+
uses: actions/checkout@v6
1515
with:
1616
fetch-depth: 0
1717
submodules: 'recursive'

0 commit comments

Comments
 (0)