Skip to content

Commit 153d928

Browse files
Bump actions/checkout from 5 to 6 (#352)
Bumps [actions/checkout](https://github.com/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) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 8c48f25 commit 153d928

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/ci-additional.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
steps:
2525
- name: checkout the repository
26-
uses: actions/checkout@v5
26+
uses: actions/checkout@v6
2727
with:
2828
# need to fetch all tags to get a correct version
2929
fetch-depth: 0 # fetch all branches and tags

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
outputs:
2121
triggered: ${{ steps.detect-trigger.outputs.trigger-found }}
2222
steps:
23-
- uses: actions/checkout@v5
23+
- uses: actions/checkout@v6
2424
with:
2525
fetch-depth: 2
2626
- uses: xarray-contrib/ci-trigger@v1
@@ -55,7 +55,7 @@ jobs:
5555

5656
steps:
5757
- name: checkout the repository
58-
uses: actions/checkout@v5
58+
uses: actions/checkout@v6
5959
with:
6060
# need to fetch all tags to get a correct version
6161
fetch-depth: 0 # fetch all branches and tags

.github/workflows/nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
outputs:
2525
triggered: ${{ steps.detect-trigger.outputs.trigger-found }}
2626
steps:
27-
- uses: actions/checkout@v5
27+
- uses: actions/checkout@v6
2828
with:
2929
fetch-depth: 2
3030
- uses: xarray-contrib/[email protected]
@@ -57,7 +57,7 @@ jobs:
5757

5858
steps:
5959
- name: checkout the repository
60-
uses: actions/checkout@v5
60+
uses: actions/checkout@v6
6161
with:
6262
# need to fetch all tags to get a correct version
6363
fetch-depth: 0 # fetch all branches and tags

.github/workflows/pypi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
if: github.repository == 'xarray-contrib/pint-xarray'
1212
steps:
13-
- uses: actions/checkout@v5
13+
- uses: actions/checkout@v6
1414
with:
1515
fetch-depth: 0
1616

0 commit comments

Comments
 (0)