Skip to content

Commit fd1d09a

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents a8470ef + 7ec2317 commit fd1d09a

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/ci-cd.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
steps:
3636
- name: Checkout
37-
uses: actions/checkout@v4
37+
uses: actions/checkout@v6
3838
with:
3939
fetch-depth: 0
4040

@@ -48,7 +48,7 @@ jobs:
4848
continue-on-error: true
4949

5050
- name: Cache NuGet packages
51-
uses: actions/cache@v4
51+
uses: actions/cache@v5
5252
with:
5353
path: ~/.nuget/packages
5454
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }}
@@ -75,7 +75,7 @@ jobs:
7575

7676
steps:
7777
- name: Checkout
78-
uses: actions/checkout@v4
78+
uses: actions/checkout@v6
7979

8080
- name: Setup .NET
8181
uses: actions/setup-dotnet@v5
@@ -93,7 +93,7 @@ jobs:
9393
run: dotnet pack --configuration Release --no-restore --output ./artifacts
9494

9595
- name: Upload artifacts
96-
uses: actions/upload-artifact@v4
96+
uses: actions/upload-artifact@v7
9797
with:
9898
name: nuget-packages-${{ github.sha }}
9999
path: ./artifacts/*.nupkg

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
continue-on-error: true
5353

5454
- name: Cache NuGet packages
55-
uses: actions/cache@v4
55+
uses: actions/cache@v5
5656
with:
5757
path: ~/.nuget/packages
5858
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }}

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
continue-on-error: true
6868

6969
- name: Cache NuGet packages
70-
uses: actions/cache@v4
70+
uses: actions/cache@v5
7171
with:
7272
path: ~/.nuget/packages
7373
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }}
@@ -104,7 +104,7 @@ jobs:
104104
done
105105
106106
- name: Upload artifacts
107-
uses: actions/upload-artifact@v4
107+
uses: actions/upload-artifact@v7
108108
with:
109109
name: nuget-packages-${{ github.sha }}
110110
path: ./artifacts/*.nupkg
@@ -123,7 +123,7 @@ jobs:
123123

124124
steps:
125125
- name: Download artifacts
126-
uses: actions/download-artifact@v4
126+
uses: actions/download-artifact@v8
127127
with:
128128
name: nuget-packages-${{ github.sha }}
129129
path: ./artifacts

0 commit comments

Comments
 (0)