Skip to content

Commit f3c2b39

Browse files
committed
ci: update actions/checkout in most GHA workflows to v5
Not sure whether this plays well with the Alpine ARM workflow, so it's not updated there (yet).
1 parent d493b5b commit f3c2b39

File tree

6 files changed

+6
-6
lines changed

6 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@v4
18+
uses: actions/checkout@v5
1919
with:
2020
fetch-depth: 0
2121
submodules: 'recursive'

.github/workflows/clang.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
steps:
2727
# Checks-out the repository under $GITHUB_WORKSPACE.
2828
- name: Git checkout
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v5
3030
with:
3131
submodules: 'recursive'
3232
persist-credentials: false

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
# Checks-out the repository under $GITHUB_WORKSPACE.
1616
- name: Checkout
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818
with:
1919
submodules: 'recursive'
2020
persist-credentials: false

.github/workflows/gcc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
steps:
2525
# Checks-out the repository under $GITHUB_WORKSPACE.
2626
- name: Git checkout
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2828
with:
2929
submodules: 'recursive'
3030
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@v4
14+
uses: actions/checkout@v5
1515
with:
1616
fetch-depth: 0
1717
submodules: 'recursive'

.github/workflows/sanitizer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
# Checks-out the repository under $GITHUB_WORKSPACE.
1616
- name: Checkout
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818
with:
1919
submodules: 'recursive'
2020
persist-credentials: false

0 commit comments

Comments
 (0)