Skip to content
This repository was archived by the owner on Jan 14, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ env:
jobs:
lint:
name: Lint Code
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Setup Python
uses: actions/setup-python@v5
Expand All @@ -22,7 +22,7 @@ jobs:
architecture: x64
- name: Install nox
run: |
pipx install poetry
pipx install poetry==1.8.5
pipx install nox
pipx inject nox nox-poetry
- name: Checkout PR branch
Expand All @@ -38,7 +38,7 @@ jobs:
ALLURE_RESULTS: allure-results
ALLURE_TOKEN: ${{ secrets.ALLURE_TOKEN }}
name: Test Code
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- id: app-token
uses: actions/create-github-app-token@v1
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
allure-project-id: 34
- name: Install nox
run: |
pipx install poetry
pipx install poetry==1.8.5
pipx install nox
pipx inject nox nox-poetry
- name: Run tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tag-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
with:
ref: ${{ env.GIT_TAG }}
- name: Install poetry
run: pipx install poetry
run: pipx install poetry==1.8.5
- uses: actions/github-script@v7
env:
CHANGES: ${{ needs.tag.outputs.changes }}
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ repos:
- id: detect-secrets
args: ['--exclude-files', '.*\.ipynb$', ]
- repo: https://github.com/python-poetry/poetry
rev: '1.8.0'
rev: '1.8.5'
hooks:
- id: poetry-check
stages:
Expand Down