Skip to content

Commit b0f1602

Browse files
Bump the actions group with 3 updates
Bumps the actions group with 3 updates: [actions/cache](https://github.com/actions/cache), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) Updates `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v6...v7) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 2e4fd7c commit b0f1602

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/build_wheels.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ jobs:
194194

195195
- name: Set up cache for MSF files
196196
id: msf_cache
197-
uses: actions/cache@v4
197+
uses: actions/cache@v5
198198
with:
199199
path: ${{ env.MSF_CACHE_DIR }}
200200
key: pooch-cache-${{ env.MSF_CACHE_DIR }}
@@ -238,7 +238,7 @@ jobs:
238238
"
239239
- name: Save the cache for MSF files
240240
if: ${{ steps.msf_cache.outputs.cache-hit != 'true' }}
241-
uses: actions/cache/save@v4
241+
uses: actions/cache/save@v5
242242
with:
243243
path: ${{ env.MSF_CACHE_DIR }}
244244
key: pooch-cache-${{ env.MSF_CACHE_DIR }}
@@ -266,7 +266,7 @@ jobs:
266266
ref: ${{ (github.event_name == 'release' && github.event.action == 'published') && github.ref_name || '' }}
267267

268268
- name: Restore cache for MSF files
269-
uses: actions/cache/restore@v4
269+
uses: actions/cache/restore@v5
270270
with:
271271
# restore to the workspace, not home directory
272272
path: ${{ env.MSF_CACHE_DIR }}
@@ -337,7 +337,7 @@ jobs:
337337
POOCH_CACHE: ${{ env.POOCH_CACHE }}
338338
CIBW_ENVIRONMENT_PASS_LINUX: SETUPTOOLS_SCM_PRETEND_VERSION POOCH_CACHE PYTEST_OPTIONS
339339

340-
- uses: actions/upload-artifact@v5
340+
- uses: actions/upload-artifact@v6
341341
with:
342342
name: wheels-${{ matrix.only }}
343343
path: ./wheelhouse/*.whl
@@ -356,7 +356,7 @@ jobs:
356356
fetch-depth: 0
357357
- name: Build sdist
358358
run: pipx run build --sdist
359-
- uses: actions/upload-artifact@v5
359+
- uses: actions/upload-artifact@v6
360360
with:
361361
name: sdist
362362
path: dist/*.tar.gz
@@ -368,7 +368,7 @@ jobs:
368368
# alternatively, to publish when a GitHub Release is created, use the following rule:
369369
if: github.event_name == 'release' && github.event.action == 'published' && always() && !cancelled() && !failure()
370370
steps:
371-
- uses: actions/download-artifact@v6
371+
- uses: actions/download-artifact@v7
372372
with:
373373
# unpacks default artifact into dist/
374374
path: dist
@@ -388,7 +388,7 @@ jobs:
388388
# drop requirement of 'main', release to test_pypi to test releases
389389
if: github.event_name == 'release' && github.event.action == 'published' && always() && !cancelled() && !failure()
390390
steps:
391-
- uses: actions/download-artifact@v6
391+
- uses: actions/download-artifact@v7
392392
with:
393393
# unpacks default artifact into dist/
394394
path: dist
@@ -406,7 +406,7 @@ jobs:
406406
id-token: write
407407
if: github.event.release.target_commitish == 'main' && github.event_name == 'release' && github.event.action == 'published' && always() && !cancelled() && !failure()
408408
steps:
409-
- uses: actions/download-artifact@v6
409+
- uses: actions/download-artifact@v7
410410
with:
411411
# unpacks default artifact into dist/
412412
path: dist

.github/workflows/buildjet_arm64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ jobs:
2222
run: |
2323
pip install --only-binary :all: dist/pypop_genomics*.whl
2424
pytest -s -v tests --runslow
25-
- uses: actions/upload-artifact@v5
25+
- uses: actions/upload-artifact@v6
2626
with:
2727
path: dist/*

0 commit comments

Comments
 (0)