Skip to content

Commit 367dd19

Browse files
fix(deps): update all dependencies
1 parent 377659f commit 367dd19

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/devRun.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ jobs:
1818
timeout-minutes: 15
1919
runs-on: ubuntu-latest
2020
container:
21-
image: mcr.microsoft.com/playwright:v1.55.0
21+
image: mcr.microsoft.com/playwright:v1.56.1
2222
steps:
2323
- uses: actions/checkout@v5
2424
- name: Set up Python
2525
uses: actions/setup-python@v6
2626
with:
27-
python-version: '3.13'
27+
python-version: '3.14'
2828
- name: Set up uv
2929
uses: astral-sh/setup-uv@v7
3030
with:
@@ -40,7 +40,7 @@ jobs:
4040
if: success()
4141
- name: Store Playwright Traces and Videos From Failed Tests
4242
if: failure()
43-
uses: actions/upload-artifact@v4.6.2
43+
uses: actions/upload-artifact@v5.0.0
4444
id: artifact-upload-step
4545
with:
4646
name: test-results

.github/workflows/nightly.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
needs: setup-matrix
3737
runs-on: ubuntu-latest
3838
container:
39-
image: mcr.microsoft.com/playwright:v1.55.0
39+
image: mcr.microsoft.com/playwright:v1.56.1
4040
strategy:
4141
fail-fast: false
4242
matrix: ${{ fromJson(needs.setup-matrix.outputs.matrix) }}
@@ -45,7 +45,7 @@ jobs:
4545
- name: Set up Python
4646
uses: actions/setup-python@v6
4747
with:
48-
python-version: '3.13'
48+
python-version: '3.14'
4949
- name: Set up uv
5050
uses: astral-sh/setup-uv@v7
5151
with:
@@ -62,7 +62,7 @@ jobs:
6262
--group ${{ matrix.group }}
6363
- name: Upload test results and artifacts
6464
if: always()
65-
uses: actions/upload-artifact@v4.6.2
65+
uses: actions/upload-artifact@v5.0.0
6666
with:
6767
name: test-results-${{ matrix.group }}
6868
path: |
@@ -77,7 +77,7 @@ jobs:
7777
steps:
7878
- uses: actions/checkout@v5
7979
- name: Download all test results
80-
uses: actions/download-artifact@v5
80+
uses: actions/download-artifact@v6
8181
with:
8282
path: artifacts
8383
- name: Merge test results
@@ -87,7 +87,7 @@ jobs:
8787
cp -r $dir/* merged-test-results/
8888
done
8989
- name: Upload Merged Test Results
90-
uses: actions/upload-artifact@v4.6.2
90+
uses: actions/upload-artifact@v5.0.0
9191
id: merged-artifact-upload
9292
with:
9393
name: merged-test-results

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.14.4
4040
hooks:
4141
- id: ruff
4242
args: [ --fix ]

pyproject.toml

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

77
[project]
88
dependencies = [
99
"allure-pytest==2.15.0",
10-
"axe-playwright-python==0.1.5",
10+
"axe-playwright-python==0.1.6",
1111
"playwright==1.55.0",
12-
"pytest==8.4.2",
12+
"pytest==9.0.0",
1313
"pytest-base-url==2.1.0",
1414
"pytest-playwright==0.7.1",
1515
"pytest-split==0.10.0",

0 commit comments

Comments
 (0)