Skip to content

Commit a9a2af6

Browse files
authored
Merge pull request #239 from libprima/dependabot/github_actions/actions/checkout-5.0.0
Bump actions/checkout from 4.2.2 to 5.0.0
2 parents 96d4075 + c26cce7 commit a9a2af6

Some content is hidden

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

61 files changed

+193
-193
lines changed

.github/workflows/build_python.yml

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

3131
steps:
3232
- name: Clone Repository (Latest)
33-
uses: actions/checkout@v4.2.2
33+
uses: actions/checkout@v5.0.0
3434
if: github.event.inputs.git-ref == ''
3535
with:
3636
submodules: recursive
3737
fetch-depth: 0 # Get tags for use with git describe
3838
- name: Clone Repository (Custom Ref)
39-
uses: actions/checkout@v4.2.2
39+
uses: actions/checkout@v5.0.0
4040
if: github.event.inputs.git-ref != ''
4141
with:
4242
ref: ${{ github.event.inputs.git-ref }}
@@ -99,7 +99,7 @@ jobs:
9999
name: Build source distribution
100100
runs-on: ubuntu-latest
101101
steps:
102-
- uses: actions/checkout@v4.2.2
102+
- uses: actions/checkout@v5.0.0
103103

104104
- name: Build sdist
105105
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@v4.2.2
109+
uses: actions/checkout@v5.0.0
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@v4.2.2
118+
uses: actions/checkout@v5.0.0
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@v4.2.2
196+
uses: actions/checkout@v5.0.0
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@v4.2.2
202+
uses: actions/checkout@v5.0.0
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@v4.2.2
263+
uses: actions/checkout@v5.0.0
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@v4.2.2
46+
uses: actions/checkout@v5.0.0
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@v4.2.2
55+
uses: actions/checkout@v5.0.0
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@v4.2.2
106+
uses: actions/checkout@v5.0.0
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@v4.2.2
41+
uses: actions/checkout@v5.0.0
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@v4.2.2
50+
uses: actions/checkout@v5.0.0
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@v4.2.2
106+
uses: actions/checkout@v5.0.0
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@v4.2.2
43+
uses: actions/checkout@v5.0.0
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@v4.2.2
49+
uses: actions/checkout@v5.0.0
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@v4.2.2
103+
uses: actions/checkout@v5.0.0
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@v4.2.2
44+
uses: actions/checkout@v5.0.0
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@v4.2.2
50+
uses: actions/checkout@v5.0.0
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@v4.2.2
112+
uses: actions/checkout@v5.0.0
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
@@ -87,14 +87,14 @@ jobs:
8787
swap-storage: false # Important, or the runner may be shut down due to memory starvation.
8888

8989
- name: Clone Repository (Latest)
90-
uses: actions/checkout@v4.2.2
90+
uses: actions/checkout@v5.0.0
9191
if: github.event.inputs.git-ref == ''
9292
with:
9393
submodules: recursive
9494
# ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS
9595
# As of 231227, checkout with ssh fails frequently on Windows runners.
9696
- name: Clone Repository (Custom Ref)
97-
uses: actions/checkout@v4.2.2
97+
uses: actions/checkout@v5.0.0
9898
if: github.event.inputs.git-ref != ''
9999
with:
100100
ref: ${{ github.event.inputs.git-ref }}
@@ -190,12 +190,12 @@ jobs:
190190

191191
# steps:
192192
# - name: Clone Repository (Latest)
193-
# uses: actions/checkout@v4.2.2
193+
# uses: actions/checkout@v5.0.0
194194
# if: github.event.inputs.git-ref == ''
195195
# with:
196196
# submodules: recursive
197197
# - name: Clone Repository (Custom Ref)
198-
# uses: actions/checkout@v4.2.2
198+
# uses: actions/checkout@v5.0.0
199199
# if: github.event.inputs.git-ref != ''
200200
# with:
201201
# 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@v4.2.2
50+
uses: actions/checkout@v5.0.0
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@v4.2.2
56+
uses: actions/checkout@v5.0.0
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@v4.2.2
133+
uses: actions/checkout@v5.0.0
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@v4.2.2
34+
uses: actions/checkout@v5.0.0
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@v4.2.2
40+
uses: actions/checkout@v5.0.0
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@v4.2.2
74+
uses: actions/checkout@v5.0.0
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
@@ -66,14 +66,14 @@ jobs:
6666
swap-storage: false # Important, or the runner may be shut down due to memory starvation.
6767

6868
- name: Clone Repository (Latest)
69-
uses: actions/checkout@v4.2.2
69+
uses: actions/checkout@v5.0.0
7070
if: github.event.inputs.git-ref == ''
7171
with:
7272
submodules: recursive
7373
# ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS
7474
# As of 231227, checkout with ssh fails frequently on Windows runners.
7575
- name: Clone Repository (Custom Ref)
76-
uses: actions/checkout@v4.2.2
76+
uses: actions/checkout@v5.0.0
7777
if: github.event.inputs.git-ref != ''
7878
with:
7979
ref: ${{ github.event.inputs.git-ref }}
@@ -172,7 +172,7 @@ jobs:
172172
needs: test
173173
steps:
174174
- name: Clone the GitHub actions scripts
175-
uses: actions/checkout@v4.2.2
175+
uses: actions/checkout@v5.0.0
176176
with:
177177
repository: equipez/github_actions_scripts
178178
ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS

0 commit comments

Comments
 (0)