Skip to content

Commit b864ca1

Browse files
committed
chore(ci): update action versions and python versions
1 parent eb75158 commit b864ca1

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/code-quality.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ jobs:
1212
pre-commit:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v2
16-
- uses: actions/setup-python@v1
15+
- uses: actions/checkout@v4
16+
- uses: actions/setup-python@v5
1717
- uses: pre-commit/action@v2.0.0

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ jobs:
1616
strategy:
1717
matrix:
1818
os: [Ubuntu]
19-
python-version: [3.6, 3.7, 3.8, 3.9]
19+
python-version: ["3.10", "3.11", "3.12", "3.13"]
2020
experimental: [false]
2121
fail-fast: false
2222

2323
steps:
24-
- uses: actions/checkout@v2
25-
- uses: actions/setup-go@v2
24+
- uses: actions/checkout@v4
25+
- uses: actions/setup-go@v5
2626

2727
- name: Set up Python ${{ matrix.python-version }}
28-
uses: actions/setup-python@v2
28+
uses: actions/setup-python@v5
2929
with:
3030
python-version: ${{ matrix.python-version }}
3131

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
id: tag
1818
run: echo ::set-output name=tag::${GITHUB_REF#refs/tags/}
1919

20-
- name: Set up Python 3.9
21-
uses: actions/setup-python@v2
20+
- name: Set up Python 3.13
21+
uses: actions/setup-python@v5
2222
with:
23-
python-version: "3.9"
23+
python-version: "3.13"
2424

2525
- name: Install dependencies
2626
run: python -m pip install poetry

0 commit comments

Comments
 (0)