Skip to content

Commit be39621

Browse files
committed
Merge remote-tracking branch 'origin/develop' into develop
2 parents 4ae9b7b + 50391fe commit be39621

File tree

12 files changed

+112
-91
lines changed

12 files changed

+112
-91
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.13t"]
1515
steps:
1616
- name: Checkout repository
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818
- name: Set up Python ${{ matrix.python-version }}
1919
uses: actions/setup-python@v5
2020
id: setup-python

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v4
41+
uses: actions/checkout@v5
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL

.github/workflows/dependabot-auto-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
with:
1818
github-token: "${{ secrets.GITHUB_TOKEN }}"
1919
- name: Wait for tests to pass
20-
uses: lewagon/[email protected].0
20+
uses: lewagon/[email protected].1
2121
with:
2222
ref: ${{ github.event.pull_request.head.sha }}
2323
# running-workflow-name: "Test" # this condition does not work

.github/workflows/docs-requirements.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Generate `docs/requirements.txt` from pyproject.toml
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
- name: Install uv
1616
uses: astral-sh/setup-uv@v6
1717
- name: Export requirements.txt

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Checkout repository
10-
uses: actions/checkout@v4
10+
uses: actions/checkout@v5
1111
- name: Install uv
1212
uses: astral-sh/setup-uv@v6
1313
with:

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
permissions:
1717
id-token: write
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020
- name: Install uv
2121
uses: astral-sh/setup-uv@v6
2222
- name: Build package

.github/workflows/pylock.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Generate pylock.toml from pyproject.toml
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
- name: Install uv
1616
uses: astral-sh/setup-uv@v6
1717
- name: Export pylock.toml

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
contents: write
1313
steps:
1414
- name: Checkout code
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616
- name: Create release
1717
id: create_release
1818
uses: softprops/action-gh-release@v2

.github/workflows/test-example.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.13t"]
1818
steps:
1919
- name: Checkout repository
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121
- name: Install required apt packages
2222
run: |
2323
export DEBIAN_FRONTEND=noninteractive

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.13t"]
1515
steps:
1616
- name: Checkout repository
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818
- name: Install required apt packages
1919
run: |
2020
export DEBIAN_FRONTEND=noninteractive

0 commit comments

Comments
 (0)