Skip to content

Commit ec4c5c9

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

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/conda-package.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,12 +69,12 @@ jobs:
6969
$CHANNELS \
7070
conda-recipe
7171
- name: Upload artifact
72-
uses: actions/upload-artifact@v4.6.2
72+
uses: actions/upload-artifact@v5.0.0
7373
with:
7474
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
7575
path: /usr/share/miniconda/conda-bld/linux-64/${{ env.PACKAGE_NAME }}-*.conda
7676
- name: Upload wheels artifact
77-
uses: actions/upload-artifact@v4.6.2
77+
uses: actions/upload-artifact@v5.0.0
7878
with:
7979
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Wheels Python ${{ matrix.python }}
8080
path: ${{ env.WHEELS_OUTPUT_FOLDER }}${{ env.PACKAGE_NAME }}-*.whl
@@ -138,13 +138,13 @@ jobs:
138138
conda build --no-test --python ${{ matrix.python }} --numpy 2.0 -c ${{ env.INTEL_CHANNEL }} -c conda-forge --override-channels conda-recipe
139139
140140
- name: Upload artifact
141-
uses: actions/upload-artifact@v4.6.2
141+
uses: actions/upload-artifact@v5.0.0
142142
with:
143143
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
144144
path: ${{ env.CONDA_BLD }}${{ env.PACKAGE_NAME }}-*.conda
145145

146146
- name: Upload wheels artifact
147-
uses: actions/upload-artifact@v4.6.2
147+
uses: actions/upload-artifact@v5.0.0
148148
with:
149149
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Wheels Python ${{ matrix.python }}
150150
path: ${{ env.WHEELS_OUTPUT_FOLDER }}${{ env.PACKAGE_NAME }}-*.whl

.github/workflows/generate-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ jobs:
108108
git push tokened_docs gh-pages
109109
- name: Save built docs as an artifact
110110
if: ${{ github.event.pull_request && github.event.pull_request.head.repo.fork && github.event.action != 'closed'}}
111-
uses: actions/upload-artifact@v4.6.2
111+
uses: actions/upload-artifact@v5.0.0
112112
with:
113113
name: ${{ env.PACKAGE_NAME }} rendered documentation
114114
path: ~/docs

.github/workflows/openssf-scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
6262
# format to the repository Actions tab.
6363
- name: "Upload artifact"
64-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.4.0
64+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v4.4.0
6565
with:
6666
name: SARIF file
6767
path: results.sarif

0 commit comments

Comments
 (0)