Skip to content

Commit defd263

Browse files
committed
Maintenance: Update GitHub actions
1 parent e1b8a6a commit defd263

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/document.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ jobs:
99
ubuntu-latest
1010

1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
with:
1414
fetch-depth: 1
1515

1616
- name: Set up Python 3.11
17-
uses: actions/setup-python@v4
17+
uses: actions/setup-python@v5
1818
with:
1919
python-version: 3.11
2020

@@ -25,7 +25,7 @@ jobs:
2525
virtualenvs-in-project: true
2626

2727
- name: Load cached Poetry virtualenv
28-
uses: actions/cache@v3
28+
uses: actions/cache@v4
2929
id: cached-poetry-dependencies
3030
with:
3131
path: .venv

.github/workflows/lint.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
python-version: [ '3.8' ]
1212

1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
with:
1616
fetch-depth: 1
1717

1818
- name: Set up Python 3.8
19-
uses: actions/setup-python@v4
19+
uses: actions/setup-python@v5
2020
with:
2121
python-version: ${{ matrix.python-version }}
2222

.github/workflows/publish.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ jobs:
99
if: startsWith(github.ref, 'refs/tags/')
1010

1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
with:
1414
fetch-depth: 1
1515

1616
- name: Set up Python 3.8
17-
uses: actions/setup-python@v4
17+
uses: actions/setup-python@v5
1818
with:
1919
python-version: 3.8
2020

@@ -25,7 +25,7 @@ jobs:
2525
virtualenvs-in-project: true
2626

2727
- name: Load cached Poetry virtualenv
28-
uses: actions/cache@v3
28+
uses: actions/cache@v4
2929
id: cached-poetry-dependencies
3030
with:
3131
path: .venv

.github/workflows/test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
python-version: [ '3.8', '3.11' ]
1212

1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
with:
1616
fetch-depth: 1
1717

1818
- name: Set up Python
19-
uses: actions/setup-python@v4
19+
uses: actions/setup-python@v5
2020
with:
2121
python-version: ${{ matrix.python-version }}
2222

@@ -28,7 +28,7 @@ jobs:
2828
virtualenvs-in-project: true
2929

3030
- name: Load cached Poetry virtualenv
31-
uses: actions/cache@v3
31+
uses: actions/cache@v4
3232
id: cached-poetry-dependencies
3333
with:
3434
path: .venv

0 commit comments

Comments
 (0)