Skip to content

Commit 00626f2

Browse files
chore: update GitHub Actions to Node 24
1 parent 3698bf7 commit 00626f2

6 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/benchmark.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
python-version: ["3.12"]
1414

1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v7
1717
- name: Set up Python ${{ matrix.python-version }}
18-
uses: actions/setup-python@v5
18+
uses: actions/setup-python@v7
1919
with:
2020
python-version: ${{ matrix.python-version }}
2121
cache: "pip"

.github/workflows/check-semantic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ jobs:
1212
name: Semantic PR title
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: amannn/action-semantic-pull-request@v5
15+
- uses: amannn/action-semantic-pull-request@v6
1616
env:
1717
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ jobs:
99
name: Lint and Format
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v7
1313

1414
- name: Lint
1515
uses: chartboost/ruff-action@v1
1616

1717
- name: Set up Python
18-
uses: actions/setup-python@v5
18+
uses: actions/setup-python@v7
1919
with:
2020
python-version: 3.12
2121
cache: "pip"

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939

4040
steps:
4141
# Check out the repo with credentials that can bypass branch protection, and fetch git history instead of just latest commit
42-
- uses: actions/checkout@v4
42+
- uses: actions/checkout@v7
4343
with:
4444
token: ${{ secrets.AUTOMATION_USER_TOKEN }}
4545
fetch-depth: 0
@@ -69,7 +69,7 @@ jobs:
6969
if: inputs.draft != true
7070

7171
- name: Set up Python
72-
uses: actions/setup-python@v5
72+
uses: actions/setup-python@v7
7373
with:
7474
python-version: ${{ matrix.python-version }}
7575
cache: 'pip'

.github/workflows/test_examples.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
python-version: ["3.12"]
1515

1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v7
1818
- name: Set up Python ${{ matrix.python-version }}
19-
uses: actions/setup-python@v5
19+
uses: actions/setup-python@v7
2020
with:
2121
python-version: ${{ matrix.python-version }}
2222
cache: "pip"

.github/workflows/unit_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
os: [ubuntu-latest, windows-latest]
1616

1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v7
1919
- name: Set up Python ${{ matrix.python-version }}
20-
uses: actions/setup-python@v5
20+
uses: actions/setup-python@v7
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323
cache: "pip"

0 commit comments

Comments
 (0)