Skip to content

Commit fd590ad

Browse files
Merge pull request #1023 from DrTimothyAldenDavis/dev
sync github dependabot changes from dev
2 parents 502ec77 + e3f02a3 commit fd590ad

File tree

8 files changed

+25
-25
lines changed

8 files changed

+25
-25
lines changed

.github/workflows/build-arch-emu.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
run: lscpu
5858

5959
- name: checkout repository
60-
uses: actions/checkout@v5
60+
uses: actions/checkout@v6
6161
# shell: bash
6262

6363
- name: install dependencies
@@ -101,7 +101,7 @@ jobs:
101101
102102
- name: restore ccache
103103
# setup the GitHub cache used to maintain the ccache from one job to the next
104-
uses: actions/cache/restore@v4
104+
uses: actions/cache/restore@v5
105105
with:
106106
# location of the ccache of the chroot in the root file system
107107
path: /home/runner/rootfs/alpine-latest-${{ matrix.arch }}/home/runner/.ccache
@@ -175,7 +175,7 @@ jobs:
175175
# Save the cache after we are done building
176176
# This helps to retain the ccache even if the subsequent steps are failing.
177177
if: always() && (steps.build.outcome != 'skipped')
178-
uses: actions/cache/save@v4
178+
uses: actions/cache/save@v5
179179
with:
180180
path: /home/runner/rootfs/alpine-latest-${{ matrix.arch }}/home/runner/.ccache
181181
key: ${{ steps.ccache-prepare.outputs.key }}

.github/workflows/build-mingw.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
mpfr:p
9393
9494
- name: checkout repository
95-
uses: actions/checkout@v5
95+
uses: actions/checkout@v6
9696

9797
- name: prepare ccache
9898
# create key with human readable timestamp
@@ -104,7 +104,7 @@ jobs:
104104
105105
- name: restore ccache
106106
# Setup the GitHub cache used to maintain the ccache from one job to the next
107-
uses: actions/cache/restore@v4
107+
uses: actions/cache/restore@v5
108108
with:
109109
path: ${{ steps.ccache-prepare.outputs.ccachedir }}
110110
key: ${{ steps.ccache-prepare.outputs.key }}
@@ -173,7 +173,7 @@ jobs:
173173
# Save the cache after we are done building
174174
# This helps to retain the ccache even if the subsequent steps are failing.
175175
if: always() && (steps.build.outcome != 'skipped')
176-
uses: actions/cache/save@v4
176+
uses: actions/cache/save@v5
177177
with:
178178
path: ${{ steps.ccache-prepare.outputs.ccachedir }}
179179
key: ${{ steps.ccache-prepare.outputs.key }}

.github/workflows/build.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
run: lscpu
8282

8383
- name: checkout repository
84-
uses: actions/checkout@v5
84+
uses: actions/checkout@v6
8585

8686
- name: install dependencies
8787
run: |
@@ -104,7 +104,7 @@ jobs:
104104

105105
- name: restore ccache
106106
# setup the GitHub cache used to maintain the ccache from one job to the next
107-
uses: actions/cache/restore@v4
107+
uses: actions/cache/restore@v5
108108
with:
109109
path: ~/.ccache
110110
key: ${{ steps.ccache-prepare.outputs.key }}
@@ -194,7 +194,7 @@ jobs:
194194
# Save the cache after we are done building
195195
# This helps to retain the ccache even if the subsequent steps are failing.
196196
if: always() && (steps.build.outcome != 'skipped')
197-
uses: actions/cache/save@v4
197+
uses: actions/cache/save@v5
198198
with:
199199
path: ~/.ccache
200200
key: ${{ steps.ccache-prepare.outputs.key }}

.github/workflows/codeql-analysis.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040

4141
steps:
4242
- name: checkout repository
43-
uses: actions/checkout@v5
43+
uses: actions/checkout@v6
4444

4545
- name: install dependencies
4646
run: |
@@ -164,7 +164,7 @@ jobs:
164164
msystem: MINGW32
165165

166166
- name: checkout repository
167-
uses: actions/checkout@v5
167+
uses: actions/checkout@v6
168168

169169
- name: initialize CodeQL
170170
# Initialize the CodeQL tools for scanning.

.github/workflows/cross-compile.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
echo "::endgroup::"
9393
9494
- name: checkout repository
95-
uses: actions/checkout@v5
95+
uses: actions/checkout@v6
9696

9797
- name: install cross-toolchain
9898
run: |
@@ -180,7 +180,7 @@ jobs:
180180
181181
- name: restore ccache
182182
# setup the GitHub cache used to maintain the ccache from one job to the next
183-
uses: actions/cache/restore@v4
183+
uses: actions/cache/restore@v5
184184
with:
185185
# location of the ccache of the chroot in the root file system
186186
path: /home/runner/.ccache
@@ -249,7 +249,7 @@ jobs:
249249
- name: save ccache
250250
# Save the cache after we are done (successfully) building
251251
# This helps to retain the ccache even if the subsequent steps are failing
252-
uses: actions/cache/save@v4
252+
uses: actions/cache/save@v5
253253
with:
254254
path: /home/runner/.ccache
255255
key: ${{ steps.ccache-prepare.outputs.key }}

.github/workflows/macos.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
sysctl machdep
3939
4040
- name: checkout repository
41-
uses: actions/checkout@v5
41+
uses: actions/checkout@v6
4242

4343
- name: install dependencies
4444
# Homebrew's Python conflicts with the Python that comes pre-installed
@@ -67,7 +67,7 @@ jobs:
6767
6868
- name: restore ccache
6969
# setup the GitHub cache used to maintain the ccache from one job to the next
70-
uses: actions/cache/restore@v4
70+
uses: actions/cache/restore@v5
7171
with:
7272
path: /Users/runner/Library/Caches/ccache
7373
key: ${{ steps.ccache-prepare.outputs.key }}
@@ -202,7 +202,7 @@ jobs:
202202
# Save the cache after we are done building
203203
# This helps to retain the ccache even if the subsequent steps are failing.
204204
if: always() && (steps.build.outcome != 'skipped')
205-
uses: actions/cache/save@v4
205+
uses: actions/cache/save@v5
206206
with:
207207
path: /Users/runner/Library/Caches/ccache
208208
key: ${{ steps.ccache-prepare.outputs.key }}

.github/workflows/root-cmakelists-msvc.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -82,15 +82,15 @@ jobs:
8282
Get-CIMInstance -Class Win32_Processor | Select-Object -Property Name
8383
8484
- name: checkout repository
85-
uses: actions/checkout@v5
85+
uses: actions/checkout@v6
8686

8787
- uses: conda-incubator/setup-miniconda@v3
8888
with:
8989
auto-update-conda: true
9090

9191
- name: cache conda packages
9292
id: conda-cache
93-
uses: actions/cache/restore@v4
93+
uses: actions/cache/restore@v5
9494
with:
9595
path: C:/Miniconda/envs/test
9696
key: conda:netlib:msvc
@@ -106,7 +106,7 @@ jobs:
106106
107107
- name: save conda cache
108108
if: ${{ steps.conda-cache.outputs.cache-hit != 'true' }}
109-
uses: actions/cache/save@v4
109+
uses: actions/cache/save@v5
110110
with:
111111
path: C:/Miniconda/envs/test
112112
key: ${{ steps.conda-cache.outputs.cache-primary-key }}
@@ -170,7 +170,7 @@ jobs:
170170
171171
- name: restore ccache
172172
# Setup the GitHub cache used to maintain the ccache from one job to the next
173-
uses: actions/cache/restore@v4
173+
uses: actions/cache/restore@v5
174174
with:
175175
path: ${{ steps.ccache-prepare.outputs.ccachedir }}
176176
key: ${{ steps.ccache-prepare.outputs.key }}
@@ -260,7 +260,7 @@ jobs:
260260
# Save the cache after we are done building
261261
# This helps to retain the ccache even if the subsequent steps are failing.
262262
if: always() && (steps.build.outcome != 'skipped')
263-
uses: actions/cache/save@v4
263+
uses: actions/cache/save@v5
264264
with:
265265
path: ${{ steps.ccache-prepare.outputs.ccachedir }}
266266
key: ${{ steps.ccache-prepare.outputs.key }}

.github/workflows/root-cmakelists.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
run: lscpu
6666

6767
- name: checkout repository
68-
uses: actions/checkout@v5
68+
uses: actions/checkout@v6
6969

7070
- name: install dependencies
7171
run: |
@@ -88,7 +88,7 @@ jobs:
8888

8989
- name: restore ccache
9090
# setup the GitHub cache used to maintain the ccache from one job to the next
91-
uses: actions/cache/restore@v4
91+
uses: actions/cache/restore@v5
9292
with:
9393
path: ~/.ccache
9494
key: ${{ steps.ccache-prepare.outputs.key }}
@@ -187,7 +187,7 @@ jobs:
187187
# Save the cache after we are done building
188188
# This helps to retain the ccache even if the subsequent steps are failing.
189189
if: always() && (steps.build.outcome != 'skipped')
190-
uses: actions/cache/save@v4
190+
uses: actions/cache/save@v5
191191
with:
192192
path: ~/.ccache
193193
key: ${{ steps.ccache-prepare.outputs.key }}

0 commit comments

Comments
 (0)