Skip to content

Commit f1e52f8

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

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/ci_steps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ jobs:
297297

298298
- name: Upload install_manifest.txt
299299
# Upload the manifest to make it possible to download for inspection and debugging
300-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
300+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
301301
with:
302302
name: ${{ env.INSTALL_MANIFEST_FILENAME }}
303303
path: ${{ env.INSTALL_MANIFEST_PATH }}

.github/workflows/ossfuzz_workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
dry-run: false
4949
language: c++
5050
- name: Upload Crash
51-
uses: actions/upload-artifact@v5
51+
uses: actions/upload-artifact@v6
5252
if: failure() && steps.build.outcome == 'success'
5353
with:
5454
name: artifacts

.github/workflows/python-wheels-publish-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
CIBW_ENVIRONMENT: OPENEXR_RELEASE_CANDIDATE_TAG="${{ github.ref_name }}"
7474

7575
- name: Upload artifact
76-
uses: actions/upload-artifact@v5
76+
uses: actions/upload-artifact@v6
7777
with:
7878
name: wheels-${{ matrix.os }}-${{ matrix.arch }}
7979
path: |

.github/workflows/python-wheels-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
CIBW_TEST_SKIP: "*arm64"
6767

6868
- name: Upload artifact
69-
uses: actions/upload-artifact@v5
69+
uses: actions/upload-artifact@v6
7070
with:
7171
name: wheels-${{ matrix.os }}-${{ matrix.arch }}
7272
path: |

.github/workflows/python-wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
CIBW_TEST_SKIP: "*-macosx*arm64"
8181

8282
- name: Upload artifact
83-
uses: actions/upload-artifact@v5
83+
uses: actions/upload-artifact@v6
8484
with:
8585
name: wheels-${{ matrix.os }}-${{ matrix.arch }}
8686
path: |

.github/workflows/scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646

4747
# Upload the results as artifacts (optional)
4848
- name: "Upload artifact"
49-
uses: actions/upload-artifact@v5
49+
uses: actions/upload-artifact@v6
5050
with:
5151
name: SARIF file
5252
path: results.sarif

0 commit comments

Comments
 (0)