Skip to content

Commit

Permalink
Maintenance: Update GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Sbozzolo committed Jun 16, 2024
1 parent 0a015ad commit 3075c39
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 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@v3
- uses: actions/checkout@v4
with:
fetch-depth: 1

- name: Set up Python 3.11
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.11

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

- name: Load cached Poetry virtualenv
uses: actions/cache@v3
uses: actions/cache@v4
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@v3
- uses: actions/checkout@v4
with:
fetch-depth: 1

- name: Set up Python 3.8
uses: actions/setup-python@v4
uses: actions/setup-python@v5
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@v3
- uses: actions/checkout@v4
with:
fetch-depth: 1

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

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

- name: Load cached Poetry virtualenv
uses: actions/cache@v3
uses: actions/cache@v4
id: cached-poetry-dependencies
with:
path: .venv
Expand Down
6 changes: 3 additions & 3 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.8', '3.11' ]

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

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
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@v3
uses: actions/cache@v4
id: cached-poetry-dependencies
with:
path: .venv
Expand Down

0 comments on commit 3075c39

Please sign in to comment.