Skip to content

Commit c866adc

Browse files
authored
Merge pull request #20 from TBSniller/dependabot/main/bundled_dependencies-0a15956da5
Bump the "bundled-dependencies" group with 1 updates across multiple ecosystems
2 parents 9826230 + 80b5a50 commit c866adc

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/dotnet-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ jobs:
2929
persist-credentials: false
3030

3131
- name: Setup .NET 10.x
32-
uses: actions/setup-dotnet@v4
32+
uses: actions/setup-dotnet@v5
3333
with:
3434
dotnet-version: "10.0.x"
3535

3636
- name: Restore NuGet cache
3737
id: nuget-cache
38-
uses: actions/cache/restore@v4
38+
uses: actions/cache/restore@v5
3939
with:
4040
path: ${{ env.NUGET_PACKAGES }}
4141
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj', '**/Directory.Packages.props', '**/global.json', '**/nuget.config') }}
@@ -57,7 +57,7 @@ jobs:
5757

5858
- name: Save NuGet cache
5959
if: always() && steps.nuget-cache.outputs.cache-hit != 'true'
60-
uses: actions/cache/save@v4
60+
uses: actions/cache/save@v5
6161
with:
6262
path: ${{ env.NUGET_PACKAGES }}
6363
key: ${{ steps.nuget-cache.outputs.cache-primary-key }}

.github/workflows/dotnet-publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ jobs:
3030
persist-credentials: false
3131

3232
- name: Setup .NET 10.x
33-
uses: actions/setup-dotnet@v4
33+
uses: actions/setup-dotnet@v5
3434
with:
3535
dotnet-version: "10.0.x"
3636

3737
- name: Restore NuGet cache
3838
id: nuget-cache
39-
uses: actions/cache/restore@v4
39+
uses: actions/cache/restore@v5
4040
with:
4141
path: ${{ env.NUGET_PACKAGES }}
4242
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj', '**/Directory.Packages.props', '**/global.json', '**/nuget.config') }}
@@ -81,15 +81,15 @@ jobs:
8181
run: dotnet publish CmpInf.csproj --configuration Release --runtime win-x64 --self-contained true /p:PublishSingleFile=true /p:IncludeNativeLibrariesForSelfExtract=true --output publish
8282

8383
- name: Upload published artifact
84-
uses: actions/upload-artifact@v4
84+
uses: actions/upload-artifact@v7
8585
with:
8686
name: CmpInf-win-x64-singlefile
8787
path: publish/*.exe
8888
if-no-files-found: error
8989

9090
- name: Save NuGet cache
9191
if: always() && steps.nuget-cache.outputs.cache-hit != 'true'
92-
uses: actions/cache/save@v4
92+
uses: actions/cache/save@v5
9393
with:
9494
path: ${{ env.NUGET_PACKAGES }}
9595
key: ${{ steps.nuget-cache.outputs.cache-primary-key }}

0 commit comments

Comments
 (0)