Skip to content

Commit 5425feb

Browse files
Bump actions/checkout from 4 to 5 (#246)
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] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 1ddae3c commit 5425feb

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
outputs:
2020
triggered: ${{ steps.detect-trigger.outputs.trigger-found }}
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
with:
2424
fetch-depth: 2
2525
- uses: xarray-contrib/ci-trigger@v1
@@ -40,7 +40,7 @@ jobs:
4040

4141
steps:
4242
- name: checkout the repository
43-
uses: actions/checkout@v4
43+
uses: actions/checkout@v5
4444
with:
4545
# need to fetch all tags to get a correct version
4646
fetch-depth: 0 # fetch all branches and tags
@@ -72,7 +72,7 @@ jobs:
7272

7373
steps:
7474
- name: checkout the repository
75-
uses: actions/checkout@v4
75+
uses: actions/checkout@v5
7676

7777
- name: setup python
7878
uses: actions/setup-python@v5

.github/workflows/nightly.yml

Lines changed: 2 additions & 2 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@v4
26+
- uses: actions/checkout@v5
2727
with:
2828
fetch-depth: 2
2929
- uses: xarray-contrib/ci-trigger@v1
@@ -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/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
if: github.repository == 'keewis/blackdoc'
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v5
1515
- name: Set up Python
1616
uses: actions/setup-python@v5
1717
with:

0 commit comments

Comments
 (0)