Skip to content

Commit 742f7ec

Browse files
Bump the actions group across 1 directory with 2 updates
Bumps the actions group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [actions/cache](https://github.com/actions/cache). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@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) --- updated-dependencies: - dependency-name: actions/checkout 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 ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 5c9d25b commit 742f7ec

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
outputs:
2424
triggered: ${{ steps.detect-trigger.outputs.trigger-found }}
2525
steps:
26-
- uses: actions/checkout@v5
26+
- uses: actions/checkout@v6
2727
with:
2828
fetch-depth: 2
2929

@@ -52,7 +52,7 @@ jobs:
5252
python-version: ["3.11", "3.13"]
5353

5454
steps:
55-
- uses: actions/checkout@v5
55+
- uses: actions/checkout@v6
5656
with:
5757
fetch-depth: 0
5858

@@ -79,7 +79,7 @@ jobs:
7979
python -c 'import xarray_array_testing'
8080
8181
- name: Restore cached hypothesis directory
82-
uses: actions/cache/restore@v4
82+
uses: actions/cache/restore@v5
8383
with:
8484
path: .hypothesis/
8585
key: cache-hypothesis
@@ -89,7 +89,7 @@ jobs:
8989
python -m pytest --cov=xarray_array_testing
9090
9191
- name: Cache hypothesis directory
92-
uses: actions/cache/save@v4
92+
uses: actions/cache/save@v5
9393
with:
9494
path: .hypothesis/
9595
key: cache-hypothesis

0 commit comments

Comments
 (0)