Skip to content

Commit 273059e

Browse files
committed
Update github workflow actions to latest
1 parent 22cd912 commit 273059e

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ jobs:
3232
runs-on: ubuntu-latest
3333
timeout-minutes: 120
3434
steps:
35-
- uses: actions/checkout@v4
35+
- uses: actions/checkout@5
3636
- name: setup dotnet
37-
uses: actions/setup-dotnet@v4
37+
uses: actions/setup-dotnet@v5
3838
with:
3939
dotnet-version: '9.0.x'
4040
- name: run tests

.github/workflows/codeql.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,18 @@ jobs:
2626
- 'csharp'
2727

2828
steps:
29-
- uses: actions/checkout@v3
29+
- uses: actions/checkout@v5
3030
- name: init codeql
31-
uses: github/codeql-action/init@v2
31+
uses: github/codeql-action/init@v4
3232
with:
3333
languages: ${{ matrix.language }}
3434
- name: setup dotnet
35-
uses: actions/setup-dotnet@v3
35+
uses: actions/setup-dotnet@v5
3636
with:
3737
dotnet-version: '9.0.x'
3838
- name: build
3939
run: dotnet build --configuration Debug
4040
- name: analyze
41-
uses: github/codeql-action/analyze@v2
41+
uses: github/codeql-action/analyze@v4
4242
with:
4343
category: "/language:${{matrix.language}}"

.github/workflows/publish-to-nuget.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ jobs:
3131
runs-on: ubuntu-latest
3232

3333
steps:
34-
- uses: actions/checkout@v4
34+
- uses: actions/checkout@v5
3535
- name: setup dotnet
36-
uses: actions/setup-dotnet@v4
36+
uses: actions/setup-dotnet@v5
3737
with:
3838
dotnet-version: '9.0.x'
3939
- name: create nuget packages

0 commit comments

Comments
 (0)