Skip to content

Commit 7187a54

Browse files
authored
Merge pull request #224 from libprima/dependabot/github_actions/actions/checkout-4.2.2
2 parents 3822b0d + 6fee3df commit 7187a54

Some content is hidden

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

65 files changed

+205
-205
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
33+
uses: actions/checkout@v4.2.2
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
39+
uses: actions/checkout@v4.2.2
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
102+
- uses: actions/checkout@v4.2.2
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
109+
uses: actions/checkout@v4.2.2
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
118+
uses: actions/checkout@v4.2.2
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
196+
uses: actions/checkout@v4.2.2
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
202+
uses: actions/checkout@v4.2.2
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
263+
uses: actions/checkout@v4.2.2
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
46+
uses: actions/checkout@v4.2.2
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
55+
uses: actions/checkout@v4.2.2
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
106+
uses: actions/checkout@v4.2.2
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
41+
uses: actions/checkout@v4.2.2
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
50+
uses: actions/checkout@v4.2.2
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
106+
uses: actions/checkout@v4.2.2
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
43+
uses: actions/checkout@v4.2.2
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
49+
uses: actions/checkout@v4.2.2
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
103+
uses: actions/checkout@v4.2.2
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
44+
uses: actions/checkout@v4.2.2
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
50+
uses: actions/checkout@v4.2.2
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
112+
uses: actions/checkout@v4.2.2
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
@@ -63,14 +63,14 @@ jobs:
6363
run: git config --global http.postBuffer 1048576000 && git config --global core.compression 0
6464

6565
- name: Clone Repository (Latest)
66-
uses: actions/checkout@v4
66+
uses: actions/checkout@v4.2.2
6767
if: github.event.inputs.git-ref == ''
6868
with:
6969
submodules: recursive
7070
# ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS
7171
# As of 231227, checkout with ssh fails frequently on Windows runners.
7272
- name: Clone Repository (Custom Ref)
73-
uses: actions/checkout@v4
73+
uses: actions/checkout@v4.2.2
7474
if: github.event.inputs.git-ref != ''
7575
with:
7676
ref: ${{ github.event.inputs.git-ref }}
@@ -164,12 +164,12 @@ jobs:
164164

165165
# steps:
166166
# - name: Clone Repository (Latest)
167-
# uses: actions/checkout@v4
167+
# uses: actions/checkout@v4.2.2
168168
# if: github.event.inputs.git-ref == ''
169169
# with:
170170
# submodules: recursive
171171
# - name: Clone Repository (Custom Ref)
172-
# uses: actions/checkout@v4
172+
# uses: actions/checkout@v4.2.2
173173
# if: github.event.inputs.git-ref != ''
174174
# with:
175175
# 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
50+
uses: actions/checkout@v4.2.2
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
56+
uses: actions/checkout@v4.2.2
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
133+
uses: actions/checkout@v4.2.2
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
34+
uses: actions/checkout@v4.2.2
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
40+
uses: actions/checkout@v4.2.2
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
74+
uses: actions/checkout@v4.2.2
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
@@ -49,14 +49,14 @@ jobs:
4949
run: git config --global http.postBuffer 1048576000 && git config --global core.compression 0
5050

5151
- name: Clone Repository (Latest)
52-
uses: actions/checkout@v4
52+
uses: actions/checkout@v4.2.2
5353
if: github.event.inputs.git-ref == ''
5454
with:
5555
# ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS
5656
# As of 231227, checkout with ssh fails frequently on Windows runners.
5757
submodules: recursive
5858
- name: Clone Repository (Custom Ref)
59-
uses: actions/checkout@v4
59+
uses: actions/checkout@v4.2.2
6060
if: github.event.inputs.git-ref != ''
6161
with:
6262
ref: ${{ github.event.inputs.git-ref }}
@@ -159,7 +159,7 @@ jobs:
159159
needs: test
160160
steps:
161161
- name: Clone the GitHub actions scripts
162-
uses: actions/checkout@v4
162+
uses: actions/checkout@v4.2.2
163163
with:
164164
repository: equipez/github_actions_scripts
165165
ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS

0 commit comments

Comments
 (0)