Skip to content

Commit 14c3609

Browse files
chore(deps): bump actions/checkout from 1 to 3 (#215)
* chore(deps): bump actions/checkout from 1 to 3 Bumps [actions/checkout](https://github.com/actions/checkout) from 1 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v1...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * Use `fetch-depth: 0` Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Saransh <[email protected]>
1 parent df29a8e commit 14c3609

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/workflows/cd.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ jobs:
1010
dist:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v1
13+
- uses: actions/checkout@v3
14+
with:
15+
fetch-depth: 0
1416

1517
- name: Build SDist and wheel
1618
run: pipx run build

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
name: Check SDist
2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v3
2323
- uses: actions/setup-python@v2
2424
with:
2525
python-version: 3.x
@@ -39,7 +39,7 @@ jobs:
3939
- 3.9
4040
name: Check Python ${{ matrix.python-version }}
4141
steps:
42-
- uses: actions/checkout@v2
42+
- uses: actions/checkout@v3
4343

4444
- uses: actions/setup-python@v2
4545
with:
@@ -70,7 +70,7 @@ jobs:
7070
runs-on: ubuntu-latest
7171
name: Disassemble check
7272
steps:
73-
- uses: actions/checkout@v2
73+
- uses: actions/checkout@v3
7474

7575
- uses: actions/setup-python@v2
7676
with:
@@ -88,7 +88,7 @@ jobs:
8888
# root:
8989
# runs-on: ubuntu-latest
9090
# steps:
91-
# - uses: actions/checkout@v2
91+
# - uses: actions/checkout@v3
9292

9393
# - name: Get Conda
9494
# uses: conda-incubator/setup-miniconda@v2

0 commit comments

Comments
 (0)