Skip to content

Commit 87c7b83

Browse files
authored
chore(deps): updated setup-python version hash (#162)
1 parent 34774a1 commit 87c7b83

File tree

2 files changed

+29
-29
lines changed

2 files changed

+29
-29
lines changed

.github/workflows/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493
1919

2020
- name: Setup Python
21-
uses: actions/setup-python@9322b3ca74000aeb2c01eb777b646334015ddd72
21+
uses: actions/setup-python@3d1e2d2ca0a067f27da6fec484fce7f5256def85
2222
with:
2323
python-version: "3.13"
2424

.github/workflows/test.yaml

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -16,43 +16,43 @@ jobs:
1616
name: Python - Lint, Typecheck, Test
1717

1818
strategy:
19-
fail-fast: false
20-
matrix:
21-
python-version: ["3.10", "3.11", "3.12", "3.13"]
19+
fail-fast: false
20+
matrix:
21+
python-version: ["3.10", "3.11", "3.12", "3.13"]
2222

2323
runs-on: ubuntu-latest
2424

2525
steps:
26-
- name: Checkout code
27-
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493
26+
- name: Checkout code
27+
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493
2828

29-
- name: Setup Python ${{ matrix.python-version }}
30-
uses: actions/setup-python@9322b3ca74000aeb2c01eb777b646334015ddd72
31-
with:
32-
python-version: ${{ matrix.python-version }}
29+
- name: Setup Python ${{ matrix.python-version }}
30+
uses: actions/setup-python@3d1e2d2ca0a067f27da6fec484fce7f5256def85
31+
with:
32+
python-version: ${{ matrix.python-version }}
3333

34-
- name: Install Poetry
35-
uses: abatilo/actions-poetry@b8f6fe29ba2eb78e0d45ccbf41cd14154c4e25b2
34+
- name: Install Poetry
35+
uses: abatilo/actions-poetry@b8f6fe29ba2eb78e0d45ccbf41cd14154c4e25b2
3636

37-
- name: Configure Poetry
38-
run: |
39-
poetry config virtualenvs.create true --local
40-
poetry config virtualenvs.in-project true --local
37+
- name: Configure Poetry
38+
run: |
39+
poetry config virtualenvs.create true --local
40+
poetry config virtualenvs.in-project true --local
4141
42-
- name: Install package
43-
run: poetry install --all-extras
42+
- name: Install package
43+
run: poetry install --all-extras
4444

45-
- name: Format
46-
run: poetry run ruff format --check .
45+
- name: Format
46+
run: poetry run ruff format --check .
4747

48-
- name: Lint
49-
if: always()
50-
run: poetry run ruff check --output-format=github .
48+
- name: Lint
49+
if: always()
50+
run: poetry run ruff check --output-format=github .
5151

52-
- name: Typecheck
53-
if: always()
54-
run: poetry run mypy .
52+
- name: Typecheck
53+
if: always()
54+
run: poetry run mypy .
5555

56-
- name: Test
57-
if: always()
58-
run: poetry run pytest
56+
- name: Test
57+
if: always()
58+
run: poetry run pytest

0 commit comments

Comments
 (0)