Skip to content

Commit

Permalink
Bump actions/checkout from 2.4.0 to 3
Browse files Browse the repository at this point in the history
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] <support@github.com>
  • Loading branch information
dependabot[bot] authored and codingjoe committed Mar 11, 2022
1 parent 4ef26db commit 038df85
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v2.3.2
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3
- run: python -m pip install black
- run: black --check --diff .

docs:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v2.3.2
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3
- run: sudo apt install -y python3-enchant graphviz
- run: python -m pip install --upgrade pip setuptools
- run: pip install sphinxcontrib-spelling
Expand All @@ -32,7 +32,7 @@ jobs:
steps:
- uses: actions/setup-python@v2
- run: python -m pip install --upgrade pip setuptools wheel twine readme-renderer
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- run: python setup.py sdist bdist_wheel
- run: python -m twine check dist/*

Expand All @@ -54,7 +54,7 @@ jobs:
- uses: actions/setup-python@v2.3.2
with:
python-version: ${{ matrix.python-version }}
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3
- run: sudo apt install -y graphviz redis-server
- run: python -m pip install --upgrade pip setuptools wheel codecov
- run: python -m pip install -e .[dramatiq]
Expand All @@ -74,7 +74,7 @@ jobs:
- dramatiq,reversion
steps:
- uses: actions/setup-python@v2.3.2
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3
- run: sudo apt-get install -y graphviz redis-server
- run: python -m pip install --upgrade pip setuptools wheel codecov
- run: python -m pip install -e .[${{ matrix.extras }}]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v2
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install Python dependencies
run: python -m pip install --upgrade pip setuptools wheel twine
- name: Build dist packages
Expand Down

0 comments on commit 038df85

Please sign in to comment.