Skip to content

Commit 9dcdd78

Browse files
dependabot[bot]dcherian
authored andcommitted
Bump actions/checkout from 2 to 3
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 14796bf commit 9dcdd78

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/ci-additional.yaml

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@v2
23+
- uses: actions/checkout@v3
2424
with:
2525
fetch-depth: 2
2626
- uses: xarray-contrib/ci-trigger@v1.1
@@ -47,7 +47,7 @@ jobs:
4747
"minimal-requirements",
4848
]
4949
steps:
50-
- uses: actions/checkout@v2
50+
- uses: actions/checkout@v3
5151
with:
5252
fetch-depth: 0 # Fetch all history for all branches and tags.
5353

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
os: ["ubuntu-latest"]
2424
python-version: ["3.7", "3.8", "3.9"]
2525
steps:
26-
- uses: actions/checkout@v2
26+
- uses: actions/checkout@v3
2727
with:
2828
fetch-depth: 0 # Fetch all history for all branches and tags.
2929
- name: Set environment variables
@@ -76,7 +76,7 @@ jobs:
7676
# runs-on: ubuntu-latest
7777
# steps:
7878
# - name: Checkout
79-
# uses: actions/checkout@v2
79+
# uses: actions/checkout@v3
8080
# - name: set up Python 3.8
8181
# uses: actions/setup-python@v2
8282
# with:

.github/workflows/pypi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
deploy:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v3
1212
- name: Set up Python
1313
uses: actions/setup-python@v2
1414
with:

0 commit comments

Comments
 (0)