Skip to content

Commit ca1c7a1

Browse files
update CI github/actions to version 6 (#517)
- The CI actions have been warning about deprecation of the older versions especially due to the nodejs version. - Bumping up to keep up to date
1 parent d037c83 commit ca1c7a1

10 files changed

+16
-16
lines changed

.github/workflows/job-clangformat.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: windows-2022
1313
steps:
1414
- name: Checkout repository
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v6
1616

1717
- name: update llvm to version 22
1818
run: choco upgrade llvm

.github/workflows/job-cmakebuild-linux.yml

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

1818
steps:
1919
- name: Checkout repository
20-
uses: actions/checkout@v2
20+
uses: actions/checkout@v6
2121

2222
- name: Download the Microsoft repository GPG keys
2323
run: wget -q https://packages.microsoft.com/config/ubuntu/24.04/packages-microsoft-prod.deb
@@ -42,7 +42,7 @@ jobs:
4242
shell: pwsh
4343

4444
- name: Publish Build Artifacts
45-
uses: actions/upload-artifact@v4
45+
uses: actions/upload-artifact@v6
4646
with:
4747
name: Build-linux-${{inputs.configuration}}
4848
if-no-files-found: error

.github/workflows/job-cmakebuild-macOS.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ${{ inputs.architecture == 'x64' && 'macos-15-intel' || 'macos-latest' }}
2222
steps:
2323
- name: Checkout repository
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v6
2525

2626
- name: Install NuGet CLI
2727
run: brew install nuget
@@ -34,7 +34,7 @@ jobs:
3434
shell: pwsh
3535

3636
- name: Publish Build Artifacts
37-
uses: actions/upload-artifact@v4
37+
uses: actions/upload-artifact@v6
3838
with:
3939
name: Build-macOS-${{ inputs.architecture }}-${{inputs.configuration}}
4040
if-no-files-found: error

.github/workflows/job-cmakebuild-windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: windows-2025
2222
steps:
2323
- name: Checkout repository
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v6
2525

2626
- name: update llvm to version 22
2727
run: choco upgrade llvm
@@ -31,7 +31,7 @@ jobs:
3131
shell: pwsh
3232

3333
- name: Publish Build Artifacts
34-
uses: actions/upload-artifact@v4
34+
uses: actions/upload-artifact@v6
3535
with:
3636
name: Build-Windows-x64-${{inputs.configuration}}
3737
if-no-files-found: error

.github/workflows/job-deploy-linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ jobs:
1717
name: deploy-linux-${{ inputs.configuration }}
1818
runs-on: ubuntu-24.04
1919
steps:
20-
- uses: actions/download-artifact@v4
20+
- uses: actions/download-artifact@v6
2121
with:
2222
name: Build-linux-Release
2323
path: Result.Linux.x64.${{ inputs.configuration }}
2424

2525
- name: Publish Artifacts
26-
uses: actions/upload-artifact@v4
26+
uses: actions/upload-artifact@v6
2727
with:
2828
name: linux-${{ inputs.configuration }}
2929
if-no-files-found: error

.github/workflows/job-deploy-macOS.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ jobs:
2020
name: deploy-macOS-${{ inputs.architecture }}-${{ inputs.configuration }}
2121
runs-on: ${{ inputs.architecture == 'x64' && 'macos-15-intel' || 'macos-latest' }}
2222
steps:
23-
- uses: actions/download-artifact@v4
23+
- uses: actions/download-artifact@v6
2424
with:
2525
path: Result.Darwin.${{ inputs.architecture }}.${{ inputs.configuration }}
2626
name: Build-macOS-${{ inputs.architecture }}-Release
2727

2828
- name: Publish Artifacts
29-
uses: actions/upload-artifact@v4
29+
uses: actions/upload-artifact@v6
3030
with:
3131
name: macOS-${{ inputs.architecture }}-${{ inputs.configuration }}
3232
if-no-files-found: error

.github/workflows/job-deploy-windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ jobs:
1717
name: deploy-windows-x64-${{ inputs.configuration }}
1818
runs-on: windows-2025
1919
steps:
20-
- uses: actions/download-artifact@v4
20+
- uses: actions/download-artifact@v6
2121
with:
2222
path: Result.Windows.x64.MultiConfig
2323
name: Build-Windows-x64-Release
2424

2525
- name: Publish Artifacts
26-
uses: actions/upload-artifact@v4
26+
uses: actions/upload-artifact@v6
2727
with:
2828
name: Windows-x64-${{ inputs.configuration }}
2929
if-no-files-found: error

.github/workflows/job-test-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-24.04
1919
steps:
2020
- name: Download Artifacts
21-
uses: actions/download-artifact@v4
21+
uses: actions/download-artifact@v6
2222
with:
2323
name: Build-linux-${{ inputs.configuration }}
2424

.github/workflows/job-test-macOS.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ${{ inputs.architecture == 'x64' && 'macos-15-intel' || 'macos-latest' }}
1919
steps:
2020
- name: Download Artifacts
21-
uses: actions/download-artifact@v4
21+
uses: actions/download-artifact@v6
2222
with:
2323
name: Build-macOS-${{ inputs.architecture }}-${{ inputs.configuration }}
2424

.github/workflows/job-test-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: windows-2025
1616
steps:
1717
- name: Download All Artifacts
18-
uses: actions/download-artifact@v4
18+
uses: actions/download-artifact@v6
1919
with:
2020
name: Build-Windows-x64-${{ inputs.configuration }}
2121

0 commit comments

Comments
 (0)