Skip to content

Commit 8a658ca

Browse files
Bump the actions group with 2 updates
Bumps the actions group with 2 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v6...v7) Updates `actions/download-artifact` from 7 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v7...v8) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 43b66be commit 8a658ca

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/build_wheels.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ jobs:
328328
POOCH_CACHE: ${{ env.POOCH_CACHE }}
329329
CIBW_ENVIRONMENT_PASS_LINUX: SETUPTOOLS_SCM_PRETEND_VERSION POOCH_CACHE PYTEST_OPTIONS
330330

331-
- uses: actions/upload-artifact@v6
331+
- uses: actions/upload-artifact@v7
332332
with:
333333
name: wheels-${{ matrix.only }}
334334
path: ./wheelhouse/*.whl
@@ -347,7 +347,7 @@ jobs:
347347
fetch-depth: 0
348348
- name: Build sdist
349349
run: pipx run build --sdist
350-
- uses: actions/upload-artifact@v6
350+
- uses: actions/upload-artifact@v7
351351
with:
352352
name: sdist
353353
path: dist/*.tar.gz
@@ -359,7 +359,7 @@ jobs:
359359
# alternatively, to publish when a GitHub Release is created, use the following rule:
360360
if: github.event_name == 'release' && github.event.action == 'published' && always() && !cancelled() && !failure()
361361
steps:
362-
- uses: actions/download-artifact@v7
362+
- uses: actions/download-artifact@v8
363363
with:
364364
# unpacks default artifact into dist/
365365
path: dist
@@ -379,7 +379,7 @@ jobs:
379379
# drop requirement of 'main', release to test_pypi to test releases
380380
if: github.event_name == 'release' && github.event.action == 'published' && always() && !cancelled() && !failure()
381381
steps:
382-
- uses: actions/download-artifact@v7
382+
- uses: actions/download-artifact@v8
383383
with:
384384
# unpacks default artifact into dist/
385385
path: dist
@@ -397,7 +397,7 @@ jobs:
397397
id-token: write
398398
if: github.event.release.target_commitish == 'main' && github.event_name == 'release' && github.event.action == 'published' && always() && !cancelled() && !failure()
399399
steps:
400-
- uses: actions/download-artifact@v7
400+
- uses: actions/download-artifact@v8
401401
with:
402402
# unpacks default artifact into dist/
403403
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@v6
25+
- uses: actions/upload-artifact@v7
2626
with:
2727
path: dist/*

0 commit comments

Comments
 (0)