Skip to content

Commit 2bbcb5e

Browse files
authored
Merge pull request #396 from espressif/chore/update-project-settings
Chore/update project settings
2 parents b79c4f4 + 87156c5 commit 2bbcb5e

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
language: [ 'python' ]
1717
steps:
1818
- name: Checkout repository
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020
- name: Initialize CodeQL
2121
uses: github/codeql-action/init@v3
2222
with:

.github/workflows/publish_pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
deploy:
1010
runs-on: ubuntu-22.04
1111
steps:
12-
- uses: actions/checkout@v5
12+
- uses: actions/checkout@v6
1313
- name: Set up Python
1414
uses: actions/setup-python@v6
1515
with:

.github/workflows/sync-jira.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
pull-requests: write
4747
steps:
4848
- name: Check out
49-
uses: actions/checkout@v5
49+
uses: actions/checkout@v6
5050

5151
- name: Run synchronization to Jira
5252
uses: espressif/sync-jira-actions@v1
@@ -55,7 +55,7 @@ jobs:
5555
env:
5656
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5757
JIRA_PASS: ${{ secrets.JIRA_PASS }}
58-
JIRA_PROJECT: RDT
58+
JIRA_PROJECT: CII
5959
JIRA_COMPONENT: pytest-embedded
6060
JIRA_URL: ${{ secrets.JIRA_URL }}
6161
JIRA_USER: ${{ secrets.JIRA_USER }}

.github/workflows/test-build-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
test-build-docs:
1212
runs-on: ubuntu-22.04
1313
steps:
14-
- uses: actions/checkout@v5
14+
- uses: actions/checkout@v6
1515
- name: Set up Python
1616
uses: actions/setup-python@v6
1717
with:

.github/workflows/test-build-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
test-build-packages:
88
runs-on: ubuntu-22.04
99
steps:
10-
- uses: actions/checkout@v5
10+
- uses: actions/checkout@v6
1111
- name: Set up Python
1212
uses: actions/setup-python@v6
1313
with:

.github/workflows/test-python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
image: python:${{ matrix.python-version }}
3838
options: --privileged
3939
steps:
40-
- uses: actions/checkout@v5
40+
- uses: actions/checkout@v6
4141
- name: Install dependencies
4242
run: |
4343
apt update && apt install -y socat zip

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ repos:
1515
- id: mixed-line-ending
1616
args: ["-f=lf"]
1717
- repo: https://github.com/astral-sh/ruff-pre-commit
18-
rev: "v0.14.0"
18+
rev: "v0.14.9"
1919
hooks:
2020
- id: ruff-check
2121
args: ["--fix"]
2222
- id: ruff-format
2323

2424
# documentation
2525
- repo: https://github.com/sphinx-contrib/sphinx-lint
26-
rev: v1.0.0
26+
rev: v1.0.2
2727
hooks:
2828
- id: sphinx-lint
2929
args: [--enable=default-role]
@@ -36,7 +36,7 @@ repos:
3636

3737
# git commit
3838
- repo: https://github.com/espressif/conventional-precommit-linter
39-
rev: v1.10.0
39+
rev: v1.11.0
4040
hooks:
4141
- id: conventional-precommit-linter
4242
stages: [commit-msg]

0 commit comments

Comments
 (0)