Skip to content

Commit d95d508

Browse files
ci(deps): bump the github-actions group across 1 directory with 5 updates
Bumps the github-actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `3` | `6` | | [actions/setup-dotnet](https://github.com/actions/setup-dotnet) | `4` | `5` | | [actions/cache](https://github.com/actions/cache) | `4` | `5` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [github/codeql-action](https://github.com/github/codeql-action) | `3` | `4` | Updates `actions/checkout` from 3 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v6) Updates `actions/setup-dotnet` from 4 to 5 - [Release notes](https://github.com/actions/setup-dotnet/releases) - [Commits](actions/setup-dotnet@v4...v5) 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 `github/codeql-action` from 3 to 4 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-dotnet dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: github/codeql-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 8bcae7b commit d95d508

5 files changed

Lines changed: 20 additions & 20 deletions

File tree

.github/workflows/_build-push.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,15 @@ jobs:
5555
timeout-minutes: 25
5656
steps:
5757
- name: Checkout
58-
uses: actions/checkout@v4
58+
uses: actions/checkout@v6
5959

6060
- name: Setup .NET
61-
uses: actions/setup-dotnet@v4
61+
uses: actions/setup-dotnet@v5
6262
with:
6363
dotnet-version: ${{ inputs.dotnet_version }}
6464

6565
- name: Cache NuGet packages
66-
uses: actions/cache@v4
66+
uses: actions/cache@v5
6767
with:
6868
path: ~/.nuget/packages
6969
key: ${{ runner.os }}-nuget-${{ inputs.service }}-${{ hashFiles('**/*.csproj', '**/*.props', '**/packages.lock.json') }}
@@ -107,7 +107,7 @@ jobs:
107107

108108
- name: Upload test results artifact
109109
if: inputs.test_path != '' && (success() || failure())
110-
uses: actions/upload-artifact@v4
110+
uses: actions/upload-artifact@v7
111111
with:
112112
name: test-results-${{ inputs.service }}
113113
path: TestResults/
@@ -208,7 +208,7 @@ jobs:
208208

209209
- name: Upload Trivy SARIF to code scanning
210210
if: always() && hashFiles('trivy.sarif') != ''
211-
uses: github/codeql-action/upload-sarif@v3
211+
uses: github/codeql-action/upload-sarif@v4
212212
with:
213213
sarif_file: trivy.sarif
214214
category: trivy-${{ inputs.service }}
@@ -218,7 +218,7 @@ jobs:
218218
# from the run page and used to reproduce the failure locally.
219219
- name: Upload service build output on failure
220220
if: failure()
221-
uses: actions/upload-artifact@v4
221+
uses: actions/upload-artifact@v7
222222
with:
223223
name: build-output-${{ inputs.service }}
224224
path: |
@@ -229,7 +229,7 @@ jobs:
229229

230230
- name: Upload test build output on failure
231231
if: failure() && inputs.test_path != ''
232-
uses: actions/upload-artifact@v4
232+
uses: actions/upload-artifact@v7
233233
with:
234234
name: test-build-output-${{ inputs.service }}
235235
path: |

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
api_gateways: ${{ steps.changes.outputs.api_gateways }}
5454
steps:
5555
- name: Checkout
56-
uses: actions/checkout@v4
56+
uses: actions/checkout@v6
5757

5858
- name: Detect path changes
5959
id: changes
@@ -231,15 +231,15 @@ jobs:
231231
timeout-minutes: 30
232232
steps:
233233
- name: Checkout
234-
uses: actions/checkout@v4
234+
uses: actions/checkout@v6
235235

236236
- name: Setup .NET
237-
uses: actions/setup-dotnet@v4
237+
uses: actions/setup-dotnet@v5
238238
with:
239239
dotnet-version: '10.0.x'
240240

241241
- name: Cache NuGet packages
242-
uses: actions/cache@v4
242+
uses: actions/cache@v5
243243
with:
244244
path: ~/.nuget/packages
245245
key: ${{ runner.os }}-nuget-e2e-${{ hashFiles('**/*.csproj', '**/*.props') }}
@@ -284,7 +284,7 @@ jobs:
284284

285285
- name: Upload test results
286286
if: always()
287-
uses: actions/upload-artifact@v4
287+
uses: actions/upload-artifact@v7
288288
with:
289289
name: e2e-test-results
290290
path: TestResults/
@@ -297,7 +297,7 @@ jobs:
297297

298298
- name: Upload Docker logs on failure
299299
if: failure()
300-
uses: actions/upload-artifact@v4
300+
uses: actions/upload-artifact@v7
301301
with:
302302
name: docker-logs
303303
path: docker-logs.txt

.github/workflows/codeql.yml

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

3535
steps:
3636
- name: Checkout
37-
uses: actions/checkout@v4
37+
uses: actions/checkout@v6
3838

3939
- name: Setup .NET
40-
uses: actions/setup-dotnet@v4
40+
uses: actions/setup-dotnet@v5
4141
with:
4242
dotnet-version: 10.0.x
4343

4444
- name: Initialize CodeQL
45-
uses: github/codeql-action/init@v3
45+
uses: github/codeql-action/init@v4
4646
with:
4747
languages: ${{ matrix.language }}
4848
queries: security-extended,security-and-quality
@@ -55,6 +55,6 @@ jobs:
5555
dotnet build "eshop-microservices.sln" --no-restore --configuration Release
5656
5757
- name: Perform CodeQL Analysis
58-
uses: github/codeql-action/analyze@v3
58+
uses: github/codeql-action/analyze@v4
5959
with:
6060
category: "/language:${{ matrix.language }}"

.github/workflows/linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
# Checkout the code base #
4141
##########################
4242
- name: Checkout Code
43-
uses: actions/checkout@v3
43+
uses: actions/checkout@v6
4444
with:
4545
# Full git history is needed to get a proper
4646
# list of changed files within `super-linter`

.github/workflows/markdown-link-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ jobs:
3333
timeout-minutes: 10
3434
steps:
3535
- name: Checkout
36-
uses: actions/checkout@v4
36+
uses: actions/checkout@v6
3737

3838
- name: Restore lychee cache
39-
uses: actions/cache@v4
39+
uses: actions/cache@v5
4040
with:
4141
path: .lycheecache
4242
key: lychee-${{ github.sha }}

0 commit comments

Comments
 (0)