Skip to content

Commit 06274e7

Browse files
Bump actions/upload-artifact from 4.4.3 to 4.5.0
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.4.3 to 4.5.0. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4.4.3...v4.5.0) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 678b4cf commit 06274e7

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
@@ -64,12 +64,12 @@ jobs:
6464
$CHANNELS \
6565
conda-recipe
6666
- name: Upload artifact
67-
uses: actions/upload-artifact@v4.4.3
67+
uses: actions/upload-artifact@v4.5.0
6868
with:
6969
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
7070
path: /usr/share/miniconda/conda-bld/linux-64/${{ env.PACKAGE_NAME }}-*.tar.bz2
7171
- name: Upload wheels artifact
72-
uses: actions/upload-artifact@v4.4.3
72+
uses: actions/upload-artifact@v4.5.0
7373
with:
7474
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Wheels Python ${{ matrix.python }}
7575
path: ${{ env.WHEELS_OUTPUT_FOLDER }}${{ env.PACKAGE_NAME }}-*.whl
@@ -127,13 +127,13 @@ jobs:
127127
conda build --no-test --python ${{ matrix.python }} --numpy 2 -c conda-forge --override-channels conda-recipe
128128
129129
- name: Upload artifact
130-
uses: actions/upload-artifact@v4.4.3
130+
uses: actions/upload-artifact@v4.5.0
131131
with:
132132
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
133133
path: ${{ env.CONDA_BLD }}${{ env.PACKAGE_NAME }}-*.tar.bz2
134134

135135
- name: Upload wheels artifact
136-
uses: actions/upload-artifact@v4.4.3
136+
uses: actions/upload-artifact@v4.5.0
137137
with:
138138
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Wheels Python ${{ matrix.python }}
139139
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.4.3
111+
uses: actions/upload-artifact@v4.5.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@184d73b71b93c222403b2e7f1ffebe4508014249 # v4.4.0
64+
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.4.0
6565
with:
6666
name: SARIF file
6767
path: results.sarif

0 commit comments

Comments
 (0)