Skip to content

Commit bf37677

Browse files
committed
actions: upgrade actions to nodejs v24 versions
1 parent d5e77dc commit bf37677

3 files changed

Lines changed: 29 additions & 27 deletions

File tree

.github/workflows/codeql.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
name: "CodeQL"
23

34
on:
@@ -25,15 +26,15 @@ jobs:
2526

2627
steps:
2728
- name: Checkout repository
28-
uses: actions/checkout@v3
29+
uses: actions/checkout@v5
2930

3031
- name: Initialize CodeQL
31-
uses: github/codeql-action/init@v3
32+
uses: github/codeql-action/init@v4
3233
with:
3334
languages: ${{ matrix.language }}
3435

3536
- name: Autobuild
36-
uses: github/codeql-action/autobuild@v3
37+
uses: github/codeql-action/autobuild@v4
3738

3839
- name: Perform CodeQL Analysis
39-
uses: github/codeql-action/analyze@v3
40+
uses: github/codeql-action/analyze@v4

.github/workflows/release.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
---
2+
# Github workflow to Release the Artifact Signing Notation using a tag push.
23
name: Release notation-azure-artifactsigning plugin
34

45
on:
@@ -37,18 +38,18 @@ jobs:
3738
runs-on: ${{ matrix.config.os }}
3839
steps:
3940
- name: Checkout
40-
uses: actions/checkout@v4
41+
uses: actions/checkout@v5
4142
with:
4243
fetch-depth: 0
4344
- name: Setup .NET
44-
uses: actions/setup-dotnet@v4
45+
uses: actions/setup-dotnet@v5
4546
with:
4647
dotnet-version: '10.0.x'
4748
- name: Build .NET project
4849
shell: bash
4950
run: python3 ./scripts/build.py "${GITHUB_REF_NAME}" ${{ matrix.config.runtime }} ${{ matrix.config.build_args }}
5051
- name: Upload ${{ matrix.config.runtime }} artifact
51-
uses: actions/upload-artifact@v4
52+
uses: actions/upload-artifact@v6
5253
with:
5354
name: ${{ matrix.config.runtime }}
5455
path: ${{ github.workspace }}/bin/artifacts/*
@@ -59,11 +60,11 @@ jobs:
5960
needs: Build
6061
steps:
6162
- name: Checkout
62-
uses: actions/checkout@v4
63+
uses: actions/checkout@v5
6364
with:
6465
fetch-depth: 0
6566
- name: Download artifacts
66-
uses: actions/download-artifact@v4
67+
uses: actions/download-artifact@v7
6768
with:
6869
path: ${{ github.workspace }}/bin/artifacts
6970
- name: Create release

.github/workflows/test-build.yml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ jobs:
2323
contents: read
2424
steps:
2525
- name: Setup .NET
26-
uses: actions/setup-dotnet@v4
26+
uses: actions/setup-dotnet@v5
2727
with:
2828
dotnet-version: '10.0.x'
2929
- name: Checkout code into the project directory
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v5
3131
with:
3232
fetch-depth: 0
3333
- name: Run unit tests
@@ -36,7 +36,7 @@ jobs:
3636
run: |
3737
python3 ./scripts/build.py v0.0.1 linux-x64
3838
- name: Upload Linux artifact
39-
uses: actions/upload-artifact@v4
39+
uses: actions/upload-artifact@v6
4040
with:
4141
name: linux-amd64-binary
4242
path: ./bin/artifacts/notation-azure-artifactsigning_0.0.1_linux_amd64.tar.gz
@@ -49,11 +49,11 @@ jobs:
4949
contents: read
5050
steps:
5151
- name: Setup .NET
52-
uses: actions/setup-dotnet@v4
52+
uses: actions/setup-dotnet@v5
5353
with:
5454
dotnet-version: '10.0.x'
5555
- name: Checkout code into the project directory
56-
uses: actions/checkout@v4
56+
uses: actions/checkout@v5
5757
with:
5858
fetch-depth: 0
5959
- name: Run unit tests
@@ -62,7 +62,7 @@ jobs:
6262
run: |
6363
python3 ./scripts/build.py v0.0.1 linux-arm64
6464
- name: Upload Linux artifact
65-
uses: actions/upload-artifact@v4
65+
uses: actions/upload-artifact@v6
6666
with:
6767
name: linux-arm64-binary
6868
path: ./bin/artifacts/notation-azure-artifactsigning_0.0.1_linux_arm64.tar.gz
@@ -75,11 +75,11 @@ jobs:
7575
contents: read
7676
steps:
7777
- name: Setup .NET
78-
uses: actions/setup-dotnet@v4
78+
uses: actions/setup-dotnet@v5
7979
with:
8080
dotnet-version: '10.0.x'
8181
- name: Checkout code into the project directory
82-
uses: actions/checkout@v4
82+
uses: actions/checkout@v5
8383
with:
8484
fetch-depth: 0
8585
- name: Run unit tests
@@ -88,7 +88,7 @@ jobs:
8888
run: |
8989
python3 ./scripts/build.py v0.0.1 osx-x64
9090
- name: Upload macOS artifact
91-
uses: actions/upload-artifact@v4
91+
uses: actions/upload-artifact@v6
9292
with:
9393
name: darwin-amd64-binary
9494
path: ./bin/artifacts/notation-azure-artifactsigning_0.0.1_darwin_amd64.tar.gz
@@ -97,7 +97,7 @@ jobs:
9797
run: |
9898
python3 ./scripts/build.py v0.0.1 osx-arm64
9999
- name: Upload macOS arm artifact
100-
uses: actions/upload-artifact@v4
100+
uses: actions/upload-artifact@v6
101101
with:
102102
name: darwin-arm64-binary
103103
path: ./bin/artifacts/notation-azure-artifactsigning_0.0.1_darwin_arm64.tar.gz
@@ -110,19 +110,19 @@ jobs:
110110
contents: read
111111
steps:
112112
- name: Setup .NET
113-
uses: actions/setup-dotnet@v4
113+
uses: actions/setup-dotnet@v5
114114
with:
115115
dotnet-version: '10.0.x'
116116
- name: Check out code into the project directory
117-
uses: actions/checkout@v4
117+
uses: actions/checkout@v5
118118
with:
119119
fetch-depth: 0
120120
- name: Run unit tests
121121
run: make test
122122
- name: Build Windows Binary
123123
run: python3 ./scripts/build.py v0.0.1 win-x64
124124
- name: Upload Windows artifact
125-
uses: actions/upload-artifact@v4
125+
uses: actions/upload-artifact@v6
126126
with:
127127
name: windows-amd64-binary
128128
path: ./bin/artifacts/notation-azure-artifactsigning_0.0.1_windows_amd64.zip
@@ -135,11 +135,11 @@ jobs:
135135
contents: read
136136
steps:
137137
- name: Setup .NET
138-
uses: actions/setup-dotnet@v4
138+
uses: actions/setup-dotnet@v5
139139
with:
140140
dotnet-version: '10.0.x'
141141
- name: Check out code into the project directory
142-
uses: actions/checkout@v4
142+
uses: actions/checkout@v5
143143
with:
144144
fetch-depth: 0
145145
- name: Run unit tests
@@ -154,19 +154,19 @@ jobs:
154154
contents: read
155155
steps:
156156
- name: Setup .NET
157-
uses: actions/setup-dotnet@v4
157+
uses: actions/setup-dotnet@v5
158158
with:
159159
dotnet-version: '10.0.x'
160160
- name: Check out code into the project directory
161-
uses: actions/checkout@v4
161+
uses: actions/checkout@v5
162162
with:
163163
fetch-depth: 0
164164
- name: Run unit tests
165165
run: make test
166166
- name: Build Windows Binary
167167
run: python3 ./scripts/build.py v0.0.1 win-arm64
168168
- name: Upload Windows artifact
169-
uses: actions/upload-artifact@v4
169+
uses: actions/upload-artifact@v6
170170
with:
171171
name: windows-arm64-binary
172172
path: ./bin/artifacts/notation-azure-artifactsigning_0.0.1_windows_arm64.zip

0 commit comments

Comments
 (0)