Skip to content

Commit

Permalink
CI: Update action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Sbozzolo committed May 2, 2023
1 parent 8d1eb10 commit 52ba608
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/document.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ jobs:
ubuntu-latest

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

- name: Set up Python 3.8
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: 3.8

Expand All @@ -25,7 +25,7 @@ jobs:
virtualenvs-in-project: true

- name: Load cached Poetry virtualenv
uses: actions/cache@v2
uses: actions/cache@v3
id: cached-poetry-dependencies
with:
path: .venv
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
python-version: [ '3.8' ]

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

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

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')

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

- name: Set up Python 3.8
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: 3.8

Expand All @@ -25,7 +25,7 @@ jobs:
virtualenvs-in-project: true

- name: Load cached Poetry virtualenv
uses: actions/cache@v2
uses: actions/cache@v3
id: cached-poetry-dependencies
with:
path: .venv
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
python-version: [ '3.7', '3.8', '3.11' ]

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

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

Expand All @@ -28,7 +28,7 @@ jobs:
virtualenvs-in-project: true

- name: Load cached Poetry virtualenv
uses: actions/cache@v2
uses: actions/cache@v3
id: cached-poetry-dependencies
with:
path: .venv
Expand All @@ -46,7 +46,7 @@ jobs:
poetry run coverage xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v3
if: runner.python-version == '3.8' && github.event_name != 'pull_request'
with:
file: coverage.xml
Expand Down

0 comments on commit 52ba608

Please sign in to comment.