Skip to content

Commit e3b03e3

Browse files
Bump the github-actions group with 2 updates
Bumps the github-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 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/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 730cde7 commit e3b03e3

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/python-package.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
run: pip install build
6767
- name: Build source distribution
6868
run: python -m build --sdist
69-
- uses: actions/upload-artifact@v5
69+
- uses: actions/upload-artifact@v6
7070
with:
7171
name: sdist
7272
path: dist/tcod-*.tar.gz
@@ -160,7 +160,7 @@ jobs:
160160
if: runner.os != 'Windows'
161161
run: cat /tmp/xvfb.log
162162
- uses: codecov/codecov-action@v5
163-
- uses: actions/upload-artifact@v5
163+
- uses: actions/upload-artifact@v6
164164
if: runner.os == 'Windows'
165165
with:
166166
name: wheels-windows-${{ matrix.architecture }}-${{ matrix.python-version }}
@@ -275,7 +275,7 @@ jobs:
275275
BUILD_DESC=${BUILD_DESC//\*}
276276
echo BUILD_DESC=${BUILD_DESC} >> $GITHUB_ENV
277277
- name: Archive wheel
278-
uses: actions/upload-artifact@v5
278+
uses: actions/upload-artifact@v6
279279
with:
280280
name: wheels-linux-${{ matrix.arch }}-${{ env.BUILD_DESC }}
281281
path: wheelhouse/*.whl
@@ -322,7 +322,7 @@ jobs:
322322
PYTHON_DESC=${PYTHON_DESC//\*/X}
323323
echo PYTHON_DESC=${PYTHON_DESC} >> $GITHUB_ENV
324324
- name: Archive wheel
325-
uses: actions/upload-artifact@v5
325+
uses: actions/upload-artifact@v6
326326
with:
327327
name: wheels-macos-${{ env.PYTHON_DESC }}
328328
path: wheelhouse/*.whl
@@ -349,7 +349,7 @@ jobs:
349349
CIBW_BUILD: cp313-pyodide_wasm32
350350
CIBW_PLATFORM: pyodide
351351
- name: Archive wheel
352-
uses: actions/upload-artifact@v5
352+
uses: actions/upload-artifact@v6
353353
with:
354354
name: pyodide
355355
path: wheelhouse/*.whl
@@ -367,11 +367,11 @@ jobs:
367367
permissions:
368368
id-token: write
369369
steps:
370-
- uses: actions/download-artifact@v6
370+
- uses: actions/download-artifact@v7
371371
with:
372372
name: sdist
373373
path: dist/
374-
- uses: actions/download-artifact@v6
374+
- uses: actions/download-artifact@v7
375375
with:
376376
pattern: wheels-*
377377
path: dist/

0 commit comments

Comments
 (0)