Skip to content

Commit 5aab62e

Browse files
michaelblaessclaude
andcommitted
ci: GitHub-Actions auf Node-24-Majors heben (Node-20-Deprecation)
checkout->v5, setup-uv->v7, upload-artifact->v6, download-artifact->v7, action-gh-release->v3, github-script->v8. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 09cdf1d commit 5aab62e

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
os: [ubuntu-latest, windows-latest, macos-latest]
2020

2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323

2424
- name: Install uv
2525
uses: astral-sh/setup-uv@v3

.github/workflows/cleanup-artifacts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Delete artifacts older than retention window
20-
uses: actions/github-script@v7
20+
uses: actions/github-script@v8
2121
env:
2222
RETENTION_DAYS: '1'
2323
with:

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
runs-on: ${{ matrix.os }}
1818

1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121

2222
- name: Install uv
23-
uses: astral-sh/setup-uv@v5
23+
uses: astral-sh/setup-uv@v7
2424

2525
# Nuitka braucht patchelf fuer den --standalone-Build unter Linux
2626
- name: Install patchelf (Linux)
@@ -50,7 +50,7 @@ jobs:
5050
./compile-macos.sh
5151
5252
- name: Upload artifact
53-
uses: actions/upload-artifact@v4
53+
uses: actions/upload-artifact@v6
5454
with:
5555
retention-days: 1
5656
name: dist-${{ matrix.os }}
@@ -64,12 +64,12 @@ jobs:
6464

6565
steps:
6666
- name: Download all artifacts
67-
uses: actions/download-artifact@v4
67+
uses: actions/download-artifact@v7
6868
with:
6969
merge-multiple: true
7070

7171
- name: Create Release
72-
uses: softprops/action-gh-release@v2
72+
uses: softprops/action-gh-release@v3
7373
with:
7474
generate_release_notes: true
7575
files: |

0 commit comments

Comments
 (0)