Skip to content

Commit 27cae69

Browse files
committed
Bump actions to Node 24
1 parent 83a95b8 commit 27cae69

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/build_win_msvc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
build_preset: x86-release
2727

2828
steps:
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v5
3030

3131
- name: Configure
3232
run: cmake --preset ${{ matrix.configure_preset }}

.github/workflows/release-dry-run.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
exe_path: build/msvc-x86/Release/RawInputViewer.exe
2424

2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v5
2727

2828
- name: Configure
2929
run: cmake --preset ${{ matrix.configure_preset }}
@@ -37,7 +37,7 @@ jobs:
3737
New-Item -ItemType Directory -Force -Path staging | Out-Null
3838
Copy-Item -Path "${{ matrix.exe_path }}" -Destination "staging/${{ matrix.artifact_name }}"
3939
40-
- uses: actions/upload-artifact@v4
40+
- uses: actions/upload-artifact@v5
4141
with:
4242
name: ${{ matrix.artifact_name }}
4343
path: staging/${{ matrix.artifact_name }}
@@ -49,7 +49,7 @@ jobs:
4949
runs-on: windows-latest
5050

5151
steps:
52-
- uses: actions/download-artifact@v4
52+
- uses: actions/download-artifact@v5
5353
with:
5454
path: dist
5555
merge-multiple: true

.github/workflows/release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
exe_path: build/msvc-x86/Release/RawInputViewer.exe
2929

3030
steps:
31-
- uses: actions/checkout@v4
31+
- uses: actions/checkout@v5
3232

3333
- name: Configure
3434
run: cmake --preset ${{ matrix.configure_preset }}
@@ -42,7 +42,7 @@ jobs:
4242
New-Item -ItemType Directory -Force -Path staging | Out-Null
4343
Copy-Item -Path "${{ matrix.exe_path }}" -Destination "staging/${{ matrix.artifact_name }}"
4444
45-
- uses: actions/upload-artifact@v4
45+
- uses: actions/upload-artifact@v5
4646
with:
4747
name: ${{ matrix.artifact_name }}
4848
path: staging/${{ matrix.artifact_name }}
@@ -54,12 +54,12 @@ jobs:
5454
runs-on: windows-latest
5555

5656
steps:
57-
- uses: actions/download-artifact@v4
57+
- uses: actions/download-artifact@v5
5858
with:
5959
path: dist
6060
merge-multiple: true
6161

62-
- uses: softprops/action-gh-release@v2
62+
- uses: softprops/action-gh-release@v3
6363
with:
6464
files: dist/**
6565
generate_release_notes: true

0 commit comments

Comments
 (0)