Skip to content

Commit 3877341

Browse files
Bump actions/checkout from 4 to 5 (#318)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' 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 f0135dd commit 3877341

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@v4
26+
uses: actions/checkout@v5
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@v4
23+
- uses: actions/checkout@v5
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@v4
58+
uses: actions/checkout@v5
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
@@ -25,7 +25,7 @@ jobs:
2525
outputs:
2626
triggered: ${{ steps.detect-trigger.outputs.trigger-found }}
2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v5
2929
with:
3030
fetch-depth: 2
3131
- uses: xarray-contrib/[email protected]
@@ -58,7 +58,7 @@ jobs:
5858

5959
steps:
6060
- name: checkout the repository
61-
uses: actions/checkout@v4
61+
uses: actions/checkout@v5
6262
with:
6363
# need to fetch all tags to get a correct version
6464
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@v4
13+
- uses: actions/checkout@v5
1414
with:
1515
fetch-depth: 0
1616

0 commit comments

Comments
 (0)