Skip to content

Commit 9b94a3a

Browse files
Bump the actions group with 5 updates (#11016)
Bumps the actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `5` | `6` | | [actions/cache](https://github.com/actions/cache) | `4` | `5` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `5.5.1` | `5.5.2` | | [xarray-contrib/minimum-dependency-versions](https://github.com/xarray-contrib/minimum-dependency-versions) | `0.1.1` | `1.0.0` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `6` | `7` | Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) Updates `codecov/codecov-action` from 5.5.1 to 5.5.2 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@v5.5.1...v5.5.2) Updates `xarray-contrib/minimum-dependency-versions` from 0.1.1 to 1.0.0 - [Release notes](https://github.com/xarray-contrib/minimum-dependency-versions/releases) - [Commits](xarray-contrib/minimum-dependency-versions@e2ac8ff...3db8e1c) Updates `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: codecov/codecov-action dependency-version: 5.5.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: xarray-contrib/minimum-dependency-versions dependency-version: 1.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 56f311a commit 9b94a3a

File tree

8 files changed

+29
-29
lines changed

8 files changed

+29
-29
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
cp benchmarks/README_CI.md benchmarks.log .asv/results/
7474
working-directory: ${{ env.ASV_DIR }}
7575

76-
- uses: actions/upload-artifact@v5
76+
- uses: actions/upload-artifact@v6
7777
if: always()
7878
with:
7979
name: asv-benchmark-results-${{ runner.os }}

.github/workflows/benchmarks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
cp benchmarks/README_CI.md benchmarks.log .asv/results/
7171
working-directory: ${{ env.ASV_DIR }}
7272

73-
- uses: actions/upload-artifact@v5
73+
- uses: actions/upload-artifact@v6
7474
if: always()
7575
with:
7676
name: asv-benchmark-results-${{ runner.os }}

.github/workflows/cache-pixi-lock.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Get current date
2525
id: date
2626
run: echo "date=$(date +'%Y-%m-%d')" >> "$GITHUB_OUTPUT"
27-
- uses: actions/cache/restore@v4
27+
- uses: actions/cache/restore@v5
2828
id: restore
2929
with:
3030
path: |
@@ -38,15 +38,15 @@ jobs:
3838
- name: Run pixi lock
3939
if: ${{ !steps.restore.outputs.cache-hit }}
4040
run: pixi lock
41-
- uses: actions/cache/save@v4
41+
- uses: actions/cache/save@v5
4242
if: ${{ !steps.restore.outputs.cache-hit }}
4343
id: cache
4444
with:
4545
path: |
4646
pixi.lock
4747
key: ${{ steps.restore.outputs.cache-primary-key }}
4848
- name: Upload pixi.lock
49-
uses: actions/upload-artifact@v5
49+
uses: actions/upload-artifact@v6
5050
with:
5151
name: pixi-lock
5252
path: pixi.lock

.github/workflows/ci-additional.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
echo "TODAY=$(date +'%Y-%m-%d')" >> $GITHUB_ENV
6060
6161
- name: Restore cached pixi lockfile
62-
uses: actions/cache/restore@v4
62+
uses: actions/cache/restore@v5
6363
id: restore-pixi-lock
6464
with:
6565
enableCrossOsArchive: true
@@ -101,7 +101,7 @@ jobs:
101101
with:
102102
fetch-depth: 0 # Fetch all history for all branches and tags.
103103
- name: Restore cached pixi lockfile
104-
uses: actions/cache/restore@v4
104+
uses: actions/cache/restore@v5
105105
id: restore-pixi-lock
106106
with:
107107
enableCrossOsArchive: true
@@ -127,7 +127,7 @@ jobs:
127127
pixi run -e ${{env.PIXI_ENV}} -- python -m mypy --install-types --non-interactive --cobertura-xml-report mypy_report
128128
129129
- name: Upload mypy coverage to Codecov
130-
uses: codecov/[email protected].1
130+
uses: codecov/[email protected].2
131131
with:
132132
file: mypy_report/cobertura.xml
133133
flags: mypy
@@ -150,7 +150,7 @@ jobs:
150150
with:
151151
fetch-depth: 0 # Fetch all history for all branches and tags.
152152
- name: Restore cached pixi lockfile
153-
uses: actions/cache/restore@v4
153+
uses: actions/cache/restore@v5
154154
id: restore-pixi-lock
155155
with:
156156
enableCrossOsArchive: true
@@ -176,7 +176,7 @@ jobs:
176176
pixi run -e ${{env.PIXI_ENV}} -- python -m mypy --install-types --non-interactive --cobertura-xml-report mypy_report
177177
178178
- name: Upload mypy coverage to Codecov
179-
uses: codecov/[email protected].1
179+
uses: codecov/[email protected].2
180180
with:
181181
file: mypy_report/cobertura.xml
182182
flags: mypy-min
@@ -207,7 +207,7 @@ jobs:
207207
fetch-depth: 0 # Fetch all history for all branches and tags.
208208

209209
- name: Restore cached pixi lockfile
210-
uses: actions/cache/restore@v4
210+
uses: actions/cache/restore@v5
211211
id: restore-pixi-lock
212212
with:
213213
enableCrossOsArchive: true
@@ -233,7 +233,7 @@ jobs:
233233
pixi run -e ${{ matrix.pixi-env }} -- python -m pyright xarray/
234234
235235
- name: Upload pyright coverage to Codecov
236-
uses: codecov/[email protected].1
236+
uses: codecov/[email protected].2
237237
with:
238238
file: pyright_report/cobertura.xml
239239
flags: pyright
@@ -265,13 +265,13 @@ jobs:
265265
python-version: "3.x"
266266

267267
- name: All-deps minimum versions policy
268-
uses: xarray-contrib/minimum-dependency-versions@e2ac8ff0a76e8603d8536ef5d64743a375961ce9 # v0.1.1
268+
uses: xarray-contrib/minimum-dependency-versions@3db8e1c17328ee1e27dfe4db90d908644856eb61 # v1.0.0
269269
with:
270270
policy: ci/policy.yaml
271271
environment-paths: ci/requirements/min-all-deps.yml
272272

273273
- name: Bare minimum versions policy
274-
uses: xarray-contrib/minimum-dependency-versions@e2ac8ff0a76e8603d8536ef5d64743a375961ce9 # v0.1.1
274+
uses: xarray-contrib/minimum-dependency-versions@3db8e1c17328ee1e27dfe4db90d908644856eb61 # v1.0.0
275275
with:
276276
policy: ci/policy.yaml
277277
environment-paths: ci/requirements/bare-minimum.yml

.github/workflows/ci.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
with:
8585
fetch-depth: 0 # Fetch all history for all branches and tags.
8686
- name: Restore cached pixi lockfile
87-
uses: actions/cache/restore@v4
87+
uses: actions/cache/restore@v5
8888
id: restore-pixi-lock
8989
with:
9090
enableCrossOsArchive: true
@@ -135,7 +135,7 @@ jobs:
135135
pixi run -e ${{ matrix.pixi-env }} -- python -c "import xarray"
136136
137137
- name: Restore cached hypothesis directory
138-
uses: actions/cache@v4
138+
uses: actions/cache@v5
139139
with:
140140
path: .hypothesis/
141141
key: cache-hypothesis
@@ -152,13 +152,13 @@ jobs:
152152
153153
- name: Upload test results
154154
if: always()
155-
uses: actions/upload-artifact@v5
155+
uses: actions/upload-artifact@v6
156156
with:
157157
name: Test results for OS ${{ runner.os }} pixi-env ${{ matrix.pixi-env }} pytest-addopts ${{ matrix.pytest-addopts }}
158158
path: pytest.xml
159159

160160
- name: Upload code coverage to Codecov
161-
uses: codecov/[email protected].1
161+
uses: codecov/[email protected].2
162162
env:
163163
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
164164
with:
@@ -174,7 +174,7 @@ jobs:
174174
if: github.repository == 'pydata/xarray'
175175
steps:
176176
- name: Upload
177-
uses: actions/upload-artifact@v5
177+
uses: actions/upload-artifact@v6
178178
with:
179179
name: Event File
180180
path: ${{ github.event_path }}

.github/workflows/hypothesis.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
fetch-depth: 0 # Fetch all history for all branches and tags.
6464

6565
- name: Restore cached pixi lockfile
66-
uses: actions/cache/restore@v4
66+
uses: actions/cache/restore@v5
6767
id: restore-pixi-lock
6868
with:
6969
enableCrossOsArchive: true
@@ -89,7 +89,7 @@ jobs:
8989
# https://github.com/actions/cache/blob/main/tips-and-workarounds.md#update-a-cache
9090
- name: Restore cached hypothesis directory
9191
id: restore-hypothesis-cache
92-
uses: actions/cache/restore@v4
92+
uses: actions/cache/restore@v5
9393
with:
9494
path: .hypothesis/
9595
key: cache-hypothesis-${{ runner.os }}-${{ github.run_id }}
@@ -107,7 +107,7 @@ jobs:
107107
- name: Save cached hypothesis directory
108108
id: save-hypothesis-cache
109109
if: always() && steps.status.outcome != 'skipped'
110-
uses: actions/cache/save@v4
110+
uses: actions/cache/save@v5
111111
with:
112112
path: .hypothesis/
113113
key: cache-hypothesis-${{ runner.os }}-${{ github.run_id }}

.github/workflows/pypi-release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
else
5050
echo "✅ Looks good"
5151
fi
52-
- uses: actions/upload-artifact@v5
52+
- uses: actions/upload-artifact@v6
5353
with:
5454
name: releases
5555
path: dist
@@ -62,7 +62,7 @@ jobs:
6262
name: Install Python
6363
with:
6464
python-version: "3.12"
65-
- uses: actions/download-artifact@v6
65+
- uses: actions/download-artifact@v7
6666
with:
6767
name: releases
6868
path: dist
@@ -89,7 +89,7 @@ jobs:
8989
id-token: write
9090

9191
steps:
92-
- uses: actions/download-artifact@v6
92+
- uses: actions/download-artifact@v7
9393
with:
9494
name: releases
9595
path: dist
@@ -112,7 +112,7 @@ jobs:
112112
id-token: write
113113

114114
steps:
115-
- uses: actions/download-artifact@v6
115+
- uses: actions/download-artifact@v7
116116
with:
117117
name: releases
118118
path: dist

.github/workflows/upstream-dev-ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
with:
6565
fetch-depth: 0 # Fetch all history for all branches and tags.
6666
- name: Restore cached pixi lockfile
67-
uses: actions/cache/restore@v4
67+
uses: actions/cache/restore@v5
6868
id: restore-pixi-lock
6969
with:
7070
enableCrossOsArchive: true
@@ -121,7 +121,7 @@ jobs:
121121
fetch-depth: 0 # Fetch all history for all branches and tags.
122122

123123
- name: Restore cached pixi lockfile
124-
uses: actions/cache/restore@v4
124+
uses: actions/cache/restore@v5
125125
id: restore-pixi-lock
126126
with:
127127
enableCrossOsArchive: true
@@ -146,7 +146,7 @@ jobs:
146146
run: |
147147
pixi run -e ${{matrix.pixi-env}} -- python -m mypy --install-types --non-interactive --cobertura-xml-report mypy_report
148148
- name: Upload mypy coverage to Codecov
149-
uses: codecov/[email protected].1
149+
uses: codecov/[email protected].2
150150
with:
151151
file: mypy_report/cobertura.xml
152152
flags: mypy

0 commit comments

Comments
 (0)