Skip to content

Commit 0468ed1

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 1652136 + 3d7ae34 commit 0468ed1

File tree

5 files changed

+288
-280
lines changed

5 files changed

+288
-280
lines changed

.github/workflows/devRun.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ on:
99
- '**/*.lock'
1010
- '.github/workflows/devRun.yml'
1111

12+
permissions:
13+
contents: write
14+
pages: write
15+
1216
jobs:
1317
merge_test:
1418
timeout-minutes: 15
@@ -20,7 +24,7 @@ jobs:
2024
with:
2125
python-version: '3.13'
2226
- name: Set up uv
23-
uses: astral-sh/setup-uv@v5
27+
uses: astral-sh/setup-uv@v6
2428
with:
2529
enable-cache: true
2630
- name: Create venv & install dependencies
@@ -49,7 +53,7 @@ jobs:
4953
echo CHROME_VERSION=$(google-chrome --product-version)
5054
} >> environment.properties
5155
- name: Generate Allure Report
52-
uses: simple-elf/allure-report-action@master
56+
uses: simple-elf/allure-report-action@v1.12
5357
if: always()
5458
id: allure-report
5559
with:

.github/workflows/nightly.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ on:
1616
default: 2
1717
type: number
1818

19+
permissions:
20+
contents: write
21+
pages: write
22+
1923
jobs:
2024
setup-matrix:
2125
runs-on: ubuntu-latest
@@ -44,7 +48,7 @@ jobs:
4448
with:
4549
python-version: '3.13'
4650
- name: Set up uv
47-
uses: astral-sh/setup-uv@v5
51+
uses: astral-sh/setup-uv@v6
4852
with:
4953
enable-cache: true
5054
- name: Create venv & install dependencies

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,19 @@ repos:
1717
- id: no-commit-to-branch
1818
args: ['--branch', 'main']
1919
- repo: https://github.com/python-jsonschema/check-jsonschema
20-
rev: 0.32.1
20+
rev: 0.33.0
2121
hooks:
2222
- id: check-github-workflows
2323
args: ["--verbose"]
2424
- id: check-renovate
2525
- repo: https://github.com/compilerla/conventional-pre-commit
26-
rev: v4.0.0
26+
rev: v4.1.0
2727
hooks:
2828
- id: conventional-pre-commit
2929
stages: [commit-msg]
3030
args: []
3131
- repo: https://github.com/astral-sh/ruff-pre-commit
32-
rev: v0.11.4
32+
rev: v0.11.8
3333
hooks:
3434
- id: ruff
3535
args: [ --fix ]

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@ requires = ["hatchling"]
44

55
[dependency-groups]
66
dev = [
7-
"ruff==0.11.4",
7+
"ruff==0.11.8",
88
"pre-commit==4.2.0"
99
]
1010

1111
[project]
1212
authors = [{name = "Nir Tal", email = "nirt236@gmail.com"}]
1313
dependencies = [
14-
"allure-pytest==2.14.0",
14+
"allure-pytest==2.14.1",
1515
"assertpy==1.1",
1616
"dataclasses-json==0.6.7",
1717
"deprecated==1.2.18",
1818
"mailinator-python-client-2==0.0.8",
19-
"mysql-connector-python==9.2.0",
19+
"mysql-connector-python==9.3.0",
2020
"pytest==8.3.5",
2121
"pytest-base-url==2.1.0",
2222
"pytest-check==2.5.3",

0 commit comments

Comments
 (0)