Skip to content

Commit 7da2faf

Browse files
committed
fix: update github action versions to Node24 compatible
1 parent a4b0a71 commit 7da2faf

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/cd.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ jobs:
2323
outputs:
2424
TARGET_TAG_V: ${{ steps.version_check.outputs.TRGT_VERSION }}
2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v6
2727
with:
2828
fetch-depth: 0 # for fetching tags, required for semantic-release
2929
- name: Install uv and set the python version
30-
uses: astral-sh/setup-uv@v5
30+
uses: astral-sh/setup-uv@v7
3131
with:
3232
enable-cache: true
3333
- name: Install dependencies
@@ -56,12 +56,12 @@ jobs:
5656
with:
5757
app-id: ${{ vars.CI_APP_ID }}
5858
private-key: ${{ secrets.CI_PRIVATE_KEY }}
59-
- uses: actions/checkout@v4
59+
- uses: actions/checkout@v6
6060
with:
6161
token: ${{ steps.app-token.outputs.token }}
6262
fetch-depth: 0 # for fetching tags, required for semantic-release
6363
- name: Install uv and set the python version
64-
uses: astral-sh/setup-uv@v5
64+
uses: astral-sh/setup-uv@v7
6565
with:
6666
enable-cache: true
6767
- name: Install dependencies

.github/workflows/pr-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
contents: read
1414
steps:
1515
- name: Checkout code # Checks out the base branch, not PR branch.
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v6
1717

1818
- name: Detect PR type from checkboxes
1919
id: detect-type

.github/workflows/pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
permissions:
2323
id-token: write # IMPORTANT: mandatory for trusted publishing
2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v6
2626
- name: Install uv and set the python version
27-
uses: astral-sh/setup-uv@v5
27+
uses: astral-sh/setup-uv@v7
2828
with:
2929
python-version: ${{ matrix.python-version }}
3030
enable-cache: true

.github/workflows/quality.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@ jobs:
1919
matrix:
2020
python-version: ["3.11", "3.12", "3.13"]
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v6
2323
- name: Free disk space
2424
uses: ./.github/actions/free-disk-space
2525
- name: Install uv and set the python version
26-
uses: astral-sh/setup-uv@v5
26+
uses: astral-sh/setup-uv@v7
2727
with:
2828
python-version: ${{ matrix.python-version }}
2929
enable-cache: true
3030
- name: pre-commit cache key
3131
run: echo "PY=$(python -VV | sha256sum | cut -d' ' -f1)" >> "$GITHUB_ENV"
32-
- uses: actions/cache@v4
32+
- uses: actions/cache@v5
3333
with:
3434
path: ~/.cache/pre-commit
3535
key: pre-commit|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml', 'uv.lock') }}

0 commit comments

Comments
 (0)