Skip to content

Commit 5316694

Browse files
Bump actions/upload-artifact from 4 to 5
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 72d5382 commit 5316694

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/create_wheel.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
CIBW_ARCHS: ${{ matrix.archs }}
6060
MACOSX_DEPLOYMENT_TARGET: ${{ matrix.deploy_target }}
6161
CIBW_ENVIRONMENT: STORM_VERSION=${{ inputs.storm_version }} NR_JOBS=4
62-
- uses: actions/upload-artifact@v4
62+
- uses: actions/upload-artifact@v5
6363
with:
6464
name: stormpy-wheels-${{ matrix.os }}
6565
path: ./wheelhouse/*.whl
@@ -72,7 +72,7 @@ jobs:
7272
- uses: actions/checkout@v5
7373
- name: Build sdist
7474
run: pipx run build --sdist
75-
- uses: actions/upload-artifact@v4
75+
- uses: actions/upload-artifact@v5
7676
with:
7777
name: stormpy-sdist
7878
path: dist/*.tar.gz

.github/workflows/release_docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
digest="${{ steps.build.outputs.digest }}"
105105
touch "${{ runner.temp }}/digests/${{ matrix.image.tag }}/${digest#sha256:}"
106106
- name: Upload digest
107-
uses: actions/upload-artifact@v4
107+
uses: actions/upload-artifact@v5
108108
with:
109109
name: ${{ matrix.image.tag }}-digests-${{ env.PLATFORM }}
110110
path: ${{ runner.temp }}/digests/${{ matrix.image.tag }}/*

0 commit comments

Comments
 (0)