Skip to content

Commit 038df85

Browse files
dependabot[bot]codingjoe
authored andcommitted
Bump actions/checkout from 2.4.0 to 3
Bumps [actions/checkout](https://github.com/actions/checkout) from 2.4.0 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2.4.0...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 4ef26db commit 038df85

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/[email protected]
15-
- uses: actions/checkout@v2.4.0
15+
- uses: actions/checkout@v3
1616
- run: python -m pip install black
1717
- run: black --check --diff .
1818

1919
docs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- uses: actions/[email protected]
23-
- uses: actions/checkout@v2.4.0
23+
- uses: actions/checkout@v3
2424
- run: sudo apt install -y python3-enchant graphviz
2525
- run: python -m pip install --upgrade pip setuptools
2626
- run: pip install sphinxcontrib-spelling
@@ -32,7 +32,7 @@ jobs:
3232
steps:
3333
- uses: actions/setup-python@v2
3434
- run: python -m pip install --upgrade pip setuptools wheel twine readme-renderer
35-
- uses: actions/checkout@v2
35+
- uses: actions/checkout@v3
3636
- run: python setup.py sdist bdist_wheel
3737
- run: python -m twine check dist/*
3838

@@ -54,7 +54,7 @@ jobs:
5454
- uses: actions/[email protected]
5555
with:
5656
python-version: ${{ matrix.python-version }}
57-
- uses: actions/checkout@v2.4.0
57+
- uses: actions/checkout@v3
5858
- run: sudo apt install -y graphviz redis-server
5959
- run: python -m pip install --upgrade pip setuptools wheel codecov
6060
- run: python -m pip install -e .[dramatiq]
@@ -74,7 +74,7 @@ jobs:
7474
- dramatiq,reversion
7575
steps:
7676
- uses: actions/[email protected]
77-
- uses: actions/checkout@v2.4.0
77+
- uses: actions/checkout@v3
7878
- run: sudo apt-get install -y graphviz redis-server
7979
- run: python -m pip install --upgrade pip setuptools wheel codecov
8080
- run: python -m pip install -e .[${{ matrix.extras }}]

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/setup-python@v2
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v3
1313
- name: Install Python dependencies
1414
run: python -m pip install --upgrade pip setuptools wheel twine
1515
- name: Build dist packages

0 commit comments

Comments
 (0)