Skip to content

Commit cc47793

Browse files
authored
Merge pull request #103 from Ken-Tucker/vb2ae-patch-1
Update github actions
2 parents 9b03143 + a8fb866 commit cc47793

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/codeql-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ on:
1818
jobs:
1919
analyse:
2020
name: Analyse
21-
runs-on: windows-2022
21+
runs-on: windows-2025
2222
permissions:
2323
actions: read
2424
contents: read
2525
security-events: write
2626

2727
steps:
2828
- name: Checkout repository
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v6
3030
with:
3131
# We must fetch at least the immediate parents so that if this is
3232
# a pull request then we can checkout the head.
@@ -46,7 +46,7 @@ jobs:
4646
with:
4747
dotnet-version: 10.0.x
4848
- name: Setup Java SDK
49-
uses: actions/setup-java@v4
49+
uses: actions/setup-java@v5
5050
with:
5151
distribution: 'microsoft'
5252
java-version: 17

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ jobs:
2020
runs-on: ubuntu-latest
2121
environment: production
2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v6
2424
- name: Setup .NET
2525
uses: actions/setup-dotnet@v5
2626
with:
27-
dotnet-version: 9.0.x
27+
dotnet-version: 10.0.x
2828
- name: Get run ID of "Build" workflow
2929
id: get-run-id
3030
run: |
@@ -36,7 +36,7 @@ jobs:
3636
env:
3737
GH_TOKEN: ${{ github.token }}
3838
- name: Download artifact from "Build" workflow
39-
uses: actions/download-artifact@v4
39+
uses: actions/download-artifact@v7
4040
with:
4141
name: published_nuget # Match name used in dotnet-core.yml upload artifact step
4242
github-token: ${{ github.token }}

.github/workflows/dotnet.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ jobs:
1919
runs-on: windows-2025
2020

2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v6
2323
with:
2424
fetch-depth: 0 # avoid shallow clone so nbgv can do its work
2525
- name: Setup .NET
2626
uses: actions/setup-dotnet@v5
2727
with:
2828
dotnet-version: 10.0.x
2929
- name: Setup Java SDK
30-
uses: actions/setup-java@v4
30+
uses: actions/setup-java@v5
3131
with:
3232
distribution: 'microsoft'
3333
java-version: 17
@@ -67,7 +67,7 @@ jobs:
6767
run: dotnet nuget push ${{ vars.UPLOAD_NUGET_PATH }} --source ${{env.package_feed}} --api-key ${{secrets.PUBLISH_NUGET_PACKAGE}} --skip-duplicate
6868
if: github.event_name != 'pull_request'
6969
- name: Upload Artifact
70-
uses: actions/upload-artifact@v4
70+
uses: actions/upload-artifact@v6
7171
with:
7272
name: published_nuget
7373
path: ClientNoSqlDB/bin/Release/*.nupkg

0 commit comments

Comments
 (0)