Skip to content

Commit 31995a8

Browse files
authored
chore: upgraded GH actions (#424)
1 parent f534342 commit 31995a8

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/ci.yaml

+8-8
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
lint:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
- run: pipx install poetry
18-
- uses: actions/setup-python@v4
18+
- uses: actions/setup-python@v5
1919
with:
2020
python-version: "3.10"
2121
cache: poetry
@@ -35,9 +35,9 @@ jobs:
3535
- os: windows-latest
3636
python: "3.10"
3737
steps:
38-
- uses: actions/checkout@v3
38+
- uses: actions/checkout@v4
3939
- run: pipx install poetry
40-
- uses: actions/setup-python@v4
40+
- uses: actions/setup-python@v5
4141
with:
4242
python-version: ${{ matrix.python }}
4343
cache: poetry
@@ -52,9 +52,9 @@ jobs:
5252
os: [ubuntu-latest]
5353
python: ["3.9", "3.10", "3.11", "3.12"]
5454
steps:
55-
- uses: actions/checkout@v3
55+
- uses: actions/checkout@v4
5656
- run: pipx install poetry
57-
- uses: actions/setup-python@v4
57+
- uses: actions/setup-python@v5
5858
with:
5959
python-version: ${{ matrix.python }}
6060
cache: poetry
@@ -87,12 +87,12 @@ jobs:
8787
if: github.ref == 'refs/heads/main'
8888
steps:
8989
- name: Checkout
90-
uses: actions/checkout@v3
90+
uses: actions/checkout@v4
9191
with:
9292
fetch-depth: 0
9393
token: ${{ secrets.NIO_BOT_TOKEN }}
9494
- run: pipx install poetry
95-
- uses: actions/setup-python@v4
95+
- uses: actions/setup-python@v5
9696
with:
9797
python-version: "3.10"
9898
cache: poetry

.github/workflows/docs.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ jobs:
1010
name: Build Documentation
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v4
1414
with:
1515
fetch-depth: 0
16-
- uses: actions/setup-python@v2
16+
- uses: actions/setup-python@v5
1717
with:
1818
python-version: 3.9
1919
- run: pip install poetry
2020
- name: Set up cache
21-
uses: actions/cache@v2
21+
uses: actions/cache@v4
2222
with:
2323
path: .venv
2424
key: ${{ runner.os }}-venv-py3.9-${{ hashFiles('**/poetry.lock') }}

0 commit comments

Comments
 (0)