From 8ceda5a5100af0810c55d80dc29f840694db4811 Mon Sep 17 00:00:00 2001 From: Brian Greunke Date: Sat, 6 Sep 2025 11:53:09 -0500 Subject: [PATCH] chore(deps): updated setup-python version hash --- .github/workflows/publish.yaml | 2 +- .github/workflows/test.yaml | 56 +++++++++++++++++----------------- 2 files changed, 29 insertions(+), 29 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 0e6ad24e..3ef03408 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -18,7 +18,7 @@ jobs: uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 - name: Setup Python - uses: actions/setup-python@9322b3ca74000aeb2c01eb777b646334015ddd72 + uses: actions/setup-python@3d1e2d2ca0a067f27da6fec484fce7f5256def85 with: python-version: "3.13" diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index d970f4df..6e8bb588 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -16,43 +16,43 @@ jobs: name: Python - Lint, Typecheck, Test strategy: - fail-fast: false - matrix: - python-version: ["3.10", "3.11", "3.12", "3.13"] + fail-fast: false + matrix: + python-version: ["3.10", "3.11", "3.12", "3.13"] runs-on: ubuntu-latest steps: - - name: Checkout code - uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 + - name: Checkout code + uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 - - name: Setup Python ${{ matrix.python-version }} - uses: actions/setup-python@9322b3ca74000aeb2c01eb777b646334015ddd72 - with: - python-version: ${{ matrix.python-version }} + - name: Setup Python ${{ matrix.python-version }} + uses: actions/setup-python@3d1e2d2ca0a067f27da6fec484fce7f5256def85 + with: + python-version: ${{ matrix.python-version }} - - name: Install Poetry - uses: abatilo/actions-poetry@b8f6fe29ba2eb78e0d45ccbf41cd14154c4e25b2 + - name: Install Poetry + uses: abatilo/actions-poetry@b8f6fe29ba2eb78e0d45ccbf41cd14154c4e25b2 - - name: Configure Poetry - run: | - poetry config virtualenvs.create true --local - poetry config virtualenvs.in-project true --local + - name: Configure Poetry + run: | + poetry config virtualenvs.create true --local + poetry config virtualenvs.in-project true --local - - name: Install package - run: poetry install --all-extras + - name: Install package + run: poetry install --all-extras - - name: Format - run: poetry run ruff format --check . + - name: Format + run: poetry run ruff format --check . - - name: Lint - if: always() - run: poetry run ruff check --output-format=github . + - name: Lint + if: always() + run: poetry run ruff check --output-format=github . - - name: Typecheck - if: always() - run: poetry run mypy . + - name: Typecheck + if: always() + run: poetry run mypy . - - name: Test - if: always() - run: poetry run pytest + - name: Test + if: always() + run: poetry run pytest