Skip to content

Commit 12663e3

Browse files
fix(deps): update all dependencies
1 parent 56eb6b5 commit 12663e3

File tree

5 files changed

+83
-84
lines changed

5 files changed

+83
-84
lines changed

.github/workflows/devRun.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ jobs:
2121
timeout-minutes: 15
2222
runs-on: ubuntu-latest
2323
container:
24-
image: mcr.microsoft.com/playwright:v1.55.0
24+
image: mcr.microsoft.com/playwright:v1.58.2
2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v5
27+
uses: actions/checkout@v6
2828
- name: Set up Python
2929
uses: actions/setup-python@v6
3030
with:
31-
python-version: "3.13"
31+
python-version: "3.14"
3232
- name: Set up uv
3333
uses: astral-sh/setup-uv@v7
3434
with:
@@ -40,7 +40,7 @@ jobs:
4040
- name: Test with pytest
4141
run: xvfb-run .venv/bin/python -m pytest -m devRun --base-url ${{ vars.BASE_URL }}
4242
- name: Auto-assign reviewers
43-
uses: kentaro-m/auto-assign-action@v2.0.0
43+
uses: kentaro-m/auto-assign-action@v2.0.1
4444
if: success()
4545
- name: Store Playwright Traces and Videos From Failed Tests
4646
if: failure()
@@ -71,7 +71,7 @@ jobs:
7171
run: npx -y allure generate allure-results --output allure-report
7272
- name: Allure PR summary
7373
if: always()
74-
uses: allure-framework/allure-action@v0.6.2
74+
uses: allure-framework/allure-action@v0.6.4
7575
with:
7676
report-directory: "./allure-report"
7777
github-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/nightly.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,17 +37,17 @@ jobs:
3737
needs: setup-matrix
3838
runs-on: ubuntu-latest
3939
container:
40-
image: mcr.microsoft.com/playwright:v1.55.0
40+
image: mcr.microsoft.com/playwright:v1.58.2
4141
strategy:
4242
fail-fast: false
4343
matrix: ${{ fromJson(needs.setup-matrix.outputs.matrix) }}
4444
steps:
4545
- name: Checkout
46-
uses: actions/checkout@v5
46+
uses: actions/checkout@v6
4747
- name: Set up Python
4848
uses: actions/setup-python@v6
4949
with:
50-
python-version: "3.13"
50+
python-version: "3.14"
5151
- name: Set up uv
5252
uses: astral-sh/setup-uv@v7
5353
with:
@@ -65,7 +65,7 @@ jobs:
6565
--group ${{ matrix.group }}
6666
- name: Upload shard test artifacts (test-results + allure-results)
6767
if: always()
68-
uses: actions/upload-artifact@v5
68+
uses: actions/upload-artifact@v6
6969
with:
7070
name: shard-${{ matrix.group }}
7171
path: |
@@ -79,10 +79,10 @@ jobs:
7979
runs-on: ubuntu-latest
8080
steps:
8181
- name: Checkout
82-
uses: actions/checkout@v5
82+
uses: actions/checkout@v6
8383
- name: Download all Allure results into allure-results
8484
if: always()
85-
uses: actions/download-artifact@v5
85+
uses: actions/download-artifact@v7
8686
with:
8787
pattern: shard-*
8888
path: artifacts
@@ -103,7 +103,7 @@ jobs:
103103
done
104104
- name: Upload merged test-results artifact
105105
if: always()
106-
uses: actions/upload-artifact@v5
106+
uses: actions/upload-artifact@v6
107107
id: merged-artifact-upload
108108
with:
109109
name: merged-test-results

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ repos:
2424
- id: no-commit-to-branch
2525
args: [ '--branch', 'main' ]
2626
- repo: https://github.com/python-jsonschema/check-jsonschema
27-
rev: 0.34.1
27+
rev: 0.36.1
2828
hooks:
2929
- id: check-github-workflows
3030
args: ["--verbose"]
@@ -36,7 +36,7 @@ repos:
3636
stages: [commit-msg]
3737
args: []
3838
- repo: https://github.com/astral-sh/ruff-pre-commit
39-
rev: v0.14.1
39+
rev: v0.15.1
4040
hooks:
4141
- id: ruff
4242
args: [ --fix ]
@@ -50,12 +50,12 @@ repos:
5050
additional_dependencies:
5151
- tomli
5252
- repo: https://github.com/abravalheri/validate-pyproject
53-
rev: v0.24.1
53+
rev: v0.25
5454
hooks:
5555
- id: validate-pyproject
5656
additional_dependencies: ["validate-pyproject-schema-store[all]"]
5757
- repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks
58-
rev: v2.15.0
58+
rev: v2.16.0
5959
hooks:
6060
- id: pretty-format-toml
6161
exclude: poetry.lock

pyproject.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
[dependency-groups]
22
dev = [
3-
"ruff==0.14.1",
4-
"pre-commit==4.3.0"
3+
"ruff==0.15.1",
4+
"pre-commit==4.5.1"
55
]
66

77
[project]
88
dependencies = [
9-
"allure-pytest==2.15.0",
10-
"axe-playwright-python==0.1.5",
11-
"playwright==1.55.0",
12-
"pytest==8.4.2",
9+
"allure-pytest==2.15.3",
10+
"axe-playwright-python==0.1.7",
11+
"playwright==1.58.0",
12+
"pytest==9.0.2",
1313
"pytest-base-url==2.1.0",
14-
"pytest-playwright==0.7.1",
15-
"pytest-split==0.10.0",
14+
"pytest-playwright==0.7.2",
15+
"pytest-split==0.11.0",
1616
"requests==2.32.5"
1717
]
1818
description = "Playwright Python example project with pytest and Allure report"

0 commit comments

Comments
 (0)