Skip to content

Commit dcbf23f

Browse files
authored
Merge pull request #209 from nirtal85/renovate/all
fix(deps): update all dependencies
2 parents a563591 + 47dd412 commit dcbf23f

File tree

5 files changed

+56
-55
lines changed

5 files changed

+56
-55
lines changed

.github/workflows/devRun.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
timeout-minutes: 15
1919
runs-on: ubuntu-latest
2020
container:
21-
image: mcr.microsoft.com/playwright:v1.54.2
21+
image: mcr.microsoft.com/playwright:v1.55.0
2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424
- name: Set up Python
2525
uses: actions/setup-python@v5
2626
with:
@@ -64,7 +64,7 @@ jobs:
6464
echo CHROME_VERSION=$(google-chrome --product-version)
6565
} >> environment.properties
6666
- name: Generate Allure Report
67-
uses: simple-elf/allure-report-action@v1.12
67+
uses: simple-elf/allure-report-action@v1.13
6868
if: always()
6969
id: allure-report
7070
with:

.github/workflows/nightly.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ jobs:
3636
needs: setup-matrix
3737
runs-on: ubuntu-latest
3838
container:
39-
image: mcr.microsoft.com/playwright:v1.54.2
39+
image: mcr.microsoft.com/playwright:v1.55.0
4040
strategy:
4141
fail-fast: false
4242
matrix: ${{ fromJson(needs.setup-matrix.outputs.matrix) }}
4343
steps:
44-
- uses: actions/checkout@v4
44+
- uses: actions/checkout@v5
4545
- name: Set up Python
4646
uses: actions/setup-python@v5
4747
with:
@@ -75,9 +75,9 @@ jobs:
7575
if: always()
7676
runs-on: ubuntu-latest
7777
steps:
78-
- uses: actions/checkout@v4
78+
- uses: actions/checkout@v5
7979
- name: Download all test results
80-
uses: actions/download-artifact@v4
80+
uses: actions/download-artifact@v5
8181
with:
8282
path: artifacts
8383
- name: Merge test results
@@ -117,7 +117,7 @@ jobs:
117117
if: contains(needs.*.result, 'failure')
118118
run: echo ARTIFACT_URL=${{ steps.merged-artifact-upload.outputs.artifact-url }} >> environment.properties
119119
- name: Generate Allure Report
120-
uses: simple-elf/allure-report-action@v1.12
120+
uses: simple-elf/allure-report-action@v1.13
121121
if: always()
122122
id: allure-report
123123
with:

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v5.0.0
3+
rev: v6.0.0
44
hooks:
55
- id: check-yaml
66
- id: check-toml
@@ -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.33.2
27+
rev: 0.33.3
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.12.7
39+
rev: v0.12.11
4040
hooks:
4141
- id: ruff
4242
args: [ --fix ]

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
[dependency-groups]
22
dev = [
3-
"ruff==0.12.7",
4-
"pre-commit==4.2.0"
3+
"ruff==0.12.11",
4+
"pre-commit==4.3.0"
55
]
66

77
[project]
88
dependencies = [
99
"allure-pytest==2.15.0",
1010
"axe-playwright-python==0.1.5",
11-
"playwright==1.54.0",
11+
"playwright==1.55.0",
1212
"pytest==8.4.1",
1313
"pytest-base-url==2.1.0",
1414
"pytest-playwright==0.7.0",
1515
"pytest-split==0.10.0",
16-
"requests==2.32.4"
16+
"requests==2.32.5"
1717
]
1818
description = "Playwright Python example project with pytest and Allure report"
1919
name = "playwright-python"

0 commit comments

Comments
 (0)