Skip to content

Commit 3ec12b8

Browse files
Bump actions/checkout from 5.0.0 to 6.0.1
Bumps [actions/checkout](https://github.com/actions/checkout) from 5.0.0 to 6.0.1. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5.0.0...v6.0.1) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.1 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 8fe5fa7 commit 3ec12b8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+197
-197
lines changed

.github/workflows/build_python.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ jobs:
2929

3030
steps:
3131
- name: Clone Repository (Latest)
32-
uses: actions/checkout@v5.0.0
32+
uses: actions/checkout@v6.0.1
3333
if: github.event.inputs.git-ref == ''
3434
with:
3535
submodules: recursive
3636
fetch-depth: 0 # Get tags for use with git describe
3737
- name: Clone Repository (Custom Ref)
38-
uses: actions/checkout@v5.0.0
38+
uses: actions/checkout@v6.0.1
3939
if: github.event.inputs.git-ref != ''
4040
with:
4141
ref: ${{ github.event.inputs.git-ref }}
@@ -98,7 +98,7 @@ jobs:
9898
name: Build source distribution
9999
runs-on: ubuntu-latest
100100
steps:
101-
- uses: actions/checkout@v5.0.0
101+
- uses: actions/checkout@v6.0.1
102102

103103
- name: Build sdist
104104
run: pipx run build --sdist

.github/workflows/cmake.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106
run: git config --global http.postBuffer 1048576000 && git config --global core.compression 0
107107

108108
- name: Clone Repository (Latest)
109-
uses: actions/checkout@v5.0.0
109+
uses: actions/checkout@v6.0.1
110110
if: github.event.inputs.git-ref == ''
111111
with:
112112
# ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS
@@ -115,7 +115,7 @@ jobs:
115115
fetch-depth: 0
116116
fetch-tags: true
117117
- name: Clone Repository (Custom Ref)
118-
uses: actions/checkout@v5.0.0
118+
uses: actions/checkout@v6.0.1
119119
if: github.event.inputs.git-ref != ''
120120
with:
121121
ref: ${{ github.event.inputs.git-ref }}
@@ -193,13 +193,13 @@ jobs:
193193
steps:
194194

195195
- name: Clone Repository (Latest)
196-
uses: actions/checkout@v5.0.0
196+
uses: actions/checkout@v6.0.1
197197
if: github.event.inputs.git-ref == ''
198198
with:
199199
ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS
200200
submodules: recursive
201201
- name: Clone Repository (Custom Ref)
202-
uses: actions/checkout@v5.0.0
202+
uses: actions/checkout@v6.0.1
203203
if: github.event.inputs.git-ref != ''
204204
with:
205205
ref: ${{ github.event.inputs.git-ref }}
@@ -260,7 +260,7 @@ jobs:
260260
needs: [cmake-main, cmake-other]
261261
steps:
262262
- name: Clone the GitHub actions scripts
263-
uses: actions/checkout@v5.0.0
263+
uses: actions/checkout@v6.0.1
264264
with:
265265
repository: equipez/github_actions_scripts
266266
ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS

.github/workflows/cmake_mac.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
steps:
4444

4545
- name: Clone Repository (Latest)
46-
uses: actions/checkout@v5.0.0
46+
uses: actions/checkout@v6.0.1
4747
if: github.event.inputs.git-ref == ''
4848
with:
4949
# ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS
@@ -52,7 +52,7 @@ jobs:
5252
fetch-depth: 0
5353
fetch-tags: true
5454
- name: Clone Repository (Custom Ref)
55-
uses: actions/checkout@v5.0.0
55+
uses: actions/checkout@v6.0.1
5656
if: github.event.inputs.git-ref != ''
5757
with:
5858
ref: ${{ github.event.inputs.git-ref }}
@@ -103,7 +103,7 @@ jobs:
103103
needs: cmake
104104
steps:
105105
- name: Clone the GitHub actions scripts
106-
uses: actions/checkout@v5.0.0
106+
uses: actions/checkout@v6.0.1
107107
with:
108108
repository: equipez/github_actions_scripts
109109
ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS

.github/workflows/cmake_mac_nagfor.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
steps:
3939

4040
- name: Clone Repository (Latest)
41-
uses: actions/checkout@v5.0.0
41+
uses: actions/checkout@v6.0.1
4242
if: github.event.inputs.git-ref == ''
4343
with:
4444
# ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS
@@ -47,7 +47,7 @@ jobs:
4747
fetch-depth: 0
4848
fetch-tags: true
4949
- name: Clone Repository (Custom Ref)
50-
uses: actions/checkout@v5.0.0
50+
uses: actions/checkout@v6.0.1
5151
if: github.event.inputs.git-ref != ''
5252
with:
5353
ref: ${{ github.event.inputs.git-ref }}
@@ -103,7 +103,7 @@ jobs:
103103
needs: cmake
104104
steps:
105105
- name: Clone the GitHub actions scripts
106-
uses: actions/checkout@v5.0.0
106+
uses: actions/checkout@v6.0.1
107107
with:
108108
repository: equipez/github_actions_scripts
109109
ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS

.github/workflows/cmake_nagfor.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ jobs:
4040
steps:
4141

4242
- name: Clone Repository (Latest)
43-
uses: actions/checkout@v5.0.0
43+
uses: actions/checkout@v6.0.1
4444
if: github.event.inputs.git-ref == ''
4545
with:
4646
ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS
4747
submodules: recursive
4848
- name: Clone Repository (Custom Ref)
49-
uses: actions/checkout@v5.0.0
49+
uses: actions/checkout@v6.0.1
5050
if: github.event.inputs.git-ref != ''
5151
with:
5252
ref: ${{ github.event.inputs.git-ref }}
@@ -100,7 +100,7 @@ jobs:
100100
needs: cmake
101101
steps:
102102
- name: Clone the GitHub actions scripts
103-
uses: actions/checkout@v5.0.0
103+
uses: actions/checkout@v6.0.1
104104
with:
105105
repository: equipez/github_actions_scripts
106106
ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS

.github/workflows/cmake_pi.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ jobs:
4141
steps:
4242

4343
- name: Clone Repository (Latest)
44-
uses: actions/checkout@v5.0.0
44+
uses: actions/checkout@v6.0.1
4545
if: github.event.inputs.git-ref == ''
4646
with:
4747
ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS
4848
submodules: recursive
4949
- name: Clone Repository (Custom Ref)
50-
uses: actions/checkout@v5.0.0
50+
uses: actions/checkout@v6.0.1
5151
if: github.event.inputs.git-ref != ''
5252
with:
5353
ref: ${{ github.event.inputs.git-ref }}
@@ -109,7 +109,7 @@ jobs:
109109
needs: cmake
110110
steps:
111111
- name: Clone the GitHub actions scripts
112-
uses: actions/checkout@v5.0.0
112+
uses: actions/checkout@v6.0.1
113113
with:
114114
repository: equipez/github_actions_scripts
115115
ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS

.github/workflows/compile_mex.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,14 +86,14 @@ jobs:
8686
swap-storage: false # Important, or the runner may be shut down due to memory starvation.
8787

8888
- name: Clone Repository (Latest)
89-
uses: actions/checkout@v5.0.0
89+
uses: actions/checkout@v6.0.1
9090
if: github.event.inputs.git-ref == ''
9191
with:
9292
submodules: recursive
9393
# ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS
9494
# As of 231227, checkout with ssh fails frequently on Windows runners.
9595
- name: Clone Repository (Custom Ref)
96-
uses: actions/checkout@v5.0.0
96+
uses: actions/checkout@v6.0.1
9797
if: github.event.inputs.git-ref != ''
9898
with:
9999
ref: ${{ github.event.inputs.git-ref }}
@@ -189,12 +189,12 @@ jobs:
189189

190190
# steps:
191191
# - name: Clone Repository (Latest)
192-
# uses: actions/checkout@v5.0.0
192+
# uses: actions/checkout@v6.0.1
193193
# if: github.event.inputs.git-ref == ''
194194
# with:
195195
# submodules: recursive
196196
# - name: Clone Repository (Custom Ref)
197-
# uses: actions/checkout@v5.0.0
197+
# uses: actions/checkout@v6.0.1
198198
# if: github.event.inputs.git-ref != ''
199199
# with:
200200
# ref: ${{ github.event.inputs.git-ref }}

.github/workflows/lint_hosted.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@ jobs:
4747
swap-storage: false # Important, or the runner may be shut down due to memory starvation.
4848

4949
- name: Clone Repository (Latest)
50-
uses: actions/checkout@v5.0.0
50+
uses: actions/checkout@v6.0.1
5151
if: github.event.inputs.git-ref == ''
5252
with:
5353
ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS
5454
submodules: recursive
5555
- name: Clone Repository (Custom Ref)
56-
uses: actions/checkout@v5.0.0
56+
uses: actions/checkout@v6.0.1
5757
if: github.event.inputs.git-ref != ''
5858
with:
5959
ref: ${{ github.event.inputs.git-ref }}
@@ -130,7 +130,7 @@ jobs:
130130
needs: test
131131
steps:
132132
- name: Clone the GitHub actions scripts
133-
uses: actions/checkout@v5.0.0
133+
uses: actions/checkout@v6.0.1
134134
with:
135135
repository: equipez/github_actions_scripts
136136
ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS

.github/workflows/lint_nagfor.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ jobs:
3131

3232
steps:
3333
- name: Clone Repository (Latest)
34-
uses: actions/checkout@v5.0.0
34+
uses: actions/checkout@v6.0.1
3535
if: github.event.inputs.git-ref == ''
3636
with:
3737
ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS
3838
submodules: recursive
3939
- name: Clone Repository (Custom Ref)
40-
uses: actions/checkout@v5.0.0
40+
uses: actions/checkout@v6.0.1
4141
if: github.event.inputs.git-ref != ''
4242
with:
4343
ref: ${{ github.event.inputs.git-ref }}
@@ -71,7 +71,7 @@ jobs:
7171
needs: test
7272
steps:
7373
- name: Clone the GitHub actions scripts
74-
uses: actions/checkout@v5.0.0
74+
uses: actions/checkout@v6.0.1
7575
with:
7676
repository: equipez/github_actions_scripts
7777
ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS

.github/workflows/parallel_test_matlab.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,14 +67,14 @@ jobs:
6767
swap-storage: false # Important, or the runner may be shut down due to memory starvation.
6868

6969
- name: Clone Repository (Latest)
70-
uses: actions/checkout@v5.0.0
70+
uses: actions/checkout@v6.0.1
7171
if: github.event.inputs.git-ref == ''
7272
with:
7373
submodules: recursive
7474
# ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS
7575
# As of 231227, checkout with ssh fails frequently on Windows runners.
7676
- name: Clone Repository (Custom Ref)
77-
uses: actions/checkout@v5.0.0
77+
uses: actions/checkout@v6.0.1
7878
if: github.event.inputs.git-ref != ''
7979
with:
8080
ref: ${{ github.event.inputs.git-ref }}
@@ -229,7 +229,7 @@ jobs:
229229
needs: test
230230
steps:
231231
- name: Clone the GitHub actions scripts
232-
uses: actions/checkout@v5.0.0
232+
uses: actions/checkout@v6.0.1
233233
with:
234234
repository: equipez/github_actions_scripts
235235
ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS

0 commit comments

Comments
 (0)