Skip to content

Commit 4336b2e

Browse files
dependabot[bot]jhammankeewismathause
authored
Bump actions/upload-artifact from 3 to 4 (#8557)
* Bump actions/upload-artifact from 3 to 4 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * add matrix.env to upload-artifact name --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Joe Hamman <[email protected]> Co-authored-by: Justus Magin <[email protected]> Co-authored-by: Mathias Hauser <[email protected]>
1 parent 5f1f78f commit 4336b2e

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/benchmarks-last-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
cp benchmarks/README_CI.md benchmarks.log .asv/results/
7373
working-directory: ${{ env.ASV_DIR }}
7474

75-
- uses: actions/upload-artifact@v3
75+
- uses: actions/upload-artifact@v4
7676
if: always()
7777
with:
7878
name: asv-benchmark-results-${{ runner.os }}

.github/workflows/benchmarks.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
cp benchmarks/README_CI.md benchmarks.log .asv/results/
6868
working-directory: ${{ env.ASV_DIR }}
6969

70-
- uses: actions/upload-artifact@v3
70+
- uses: actions/upload-artifact@v4
7171
if: always()
7272
with:
7373
name: asv-benchmark-results-${{ runner.os }}

.github/workflows/ci.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -127,9 +127,9 @@ jobs:
127127

128128
- name: Upload test results
129129
if: always()
130-
uses: actions/upload-artifact@v3
130+
uses: actions/upload-artifact@v4
131131
with:
132-
name: Test results for ${{ runner.os }}-${{ matrix.python-version }}
132+
name: Test results for ${{ runner.os }}-${{ matrix.python-version }} ${{ matrix.env }}
133133
path: pytest.xml
134134

135135
- name: Upload code coverage to Codecov
@@ -147,7 +147,7 @@ jobs:
147147
if: github.repository == 'pydata/xarray'
148148
steps:
149149
- name: Upload
150-
uses: actions/upload-artifact@v3
150+
uses: actions/upload-artifact@v4
151151
with:
152152
name: Event File
153153
path: ${{ github.event_path }}

.github/workflows/pypi-release.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
else
4242
echo "✅ Looks good"
4343
fi
44-
- uses: actions/upload-artifact@v3
44+
- uses: actions/upload-artifact@v4
4545
with:
4646
name: releases
4747
path: dist

0 commit comments

Comments
 (0)