Skip to content

Commit

Permalink
ci(github/workflows): update github actions (setup-python to v4, chec…
Browse files Browse the repository at this point in the history
…kout to v3, cache to v3)
  • Loading branch information
Oli4 committed May 31, 2023
1 parent 8d07a17 commit 1727f51
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/_quality.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- uses: actions/setup-python@v4
- uses: pre-commit/action@v3.0.0
- uses: pre-commit-ci/lite-action@v1.0.0
if: always()
Expand All @@ -23,15 +23,15 @@ jobs:
python-version: [ "3.8" , "3.9", "3.10"]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Cache Poetry
uses: actions/cache@v2
uses: actions/cache@v3
id: poetry-cache
with:
path: |
Expand All @@ -41,7 +41,7 @@ jobs:
poetry-1.3.2
- name: Cache virtualenv
uses: actions/cache@v2
uses: actions/cache@v3
id: virtualenv-cache
with:
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
concurrency: release

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
key: ${{ github.ref }}
path: .cache
Expand Down

0 comments on commit 1727f51

Please sign in to comment.