Skip to content

Commit ed4fdec

Browse files
chore: bump the actions-updates group across 1 directory with 4 updates
Bumps the actions-updates group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/cache](https://github.com/actions/cache), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v7) Updates `actions/download-artifact` from 4 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v8) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-updates - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-updates - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-updates - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-updates ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 954b3ec commit ed4fdec

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)