Skip to content

Commit 8a82f15

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

5 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/deploy-packages.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: windows-latest
1313
steps:
1414
- name: Get code
15-
uses: actions/checkout@v5
15+
uses: actions/checkout@v6
1616
with:
1717
fetch-depth: 0 # We need the full history in order to use Git versioning
1818

@@ -32,7 +32,7 @@ jobs:
3232
dotnet publish /p:SourceRevisionId=${{ github.sha }}
3333
3434
- name: Upload build
35-
uses: actions/upload-artifact@v4
35+
uses: actions/upload-artifact@v6
3636
with:
3737
name: bin
3838
path: .artifacts/package
@@ -47,7 +47,7 @@ jobs:
4747
dotnet-version: "8.0.*"
4848

4949
- name: Download build
50-
uses: actions/download-artifact@v5
50+
uses: actions/download-artifact@v7
5151
with:
5252
name: bin
5353
path: .artifacts/package

.github/workflows/deploy-planner.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: windows-latest
2020
steps:
2121
- name: Get code
22-
uses: actions/checkout@v5
22+
uses: actions/checkout@v6
2323
with:
2424
fetch-depth: 0 # We need the full history in order to use Git versioning
2525

@@ -49,7 +49,7 @@ jobs:
4949
Squirrel pack --framework net6.0,vcredist143-x86 --packId "NetUpgradePlanner" --packTitle ".NET Upgrade Planner" --packVersion "${{ steps.nbgv.outputs.SemVer1 }}" --packAuthors "Immo Landwerth" --packDir "." -r "../../squirrel-release"
5050
5151
- name: Upload build
52-
uses: actions/upload-artifact@v4
52+
uses: actions/upload-artifact@v6
5353
with:
5454
name: squirrel-release
5555
path: .artifacts/squirrel-release
@@ -59,7 +59,7 @@ jobs:
5959
runs-on: ubuntu-latest
6060
steps:
6161
- name: Download build
62-
uses: actions/download-artifact@v5
62+
uses: actions/download-artifact@v7
6363
with:
6464
name: squirrel-release
6565
path: .artifacts/squirrel-release

.github/workflows/gen-catalog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
steps:
1616
- name: Get code
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v6
1818
with:
1919
fetch-depth: 0 # We need the full history in order to use Git versioning
2020

.github/workflows/gen-design-notes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
steps:
1616
- name: Get code
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v6
1818
with:
1919
fetch-depth: 0 # We need the full history in order to use Git versioning
2020

.github/workflows/gen-usage.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Get code
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v6
1818
with:
1919
fetch-depth: 0 # We need the full history in order to use Git versioning
2020
- name: Get .NET
@@ -32,7 +32,7 @@ jobs:
3232
runs-on: ubuntu-latest
3333
steps:
3434
- name: Get code
35-
uses: actions/checkout@v5
35+
uses: actions/checkout@v6
3636
with:
3737
fetch-depth: 0 # We need the full history in order to use Git versioning
3838
- name: Get .NET
@@ -52,7 +52,7 @@ jobs:
5252
runs-on: ubuntu-latest
5353
steps:
5454
- name: Get code
55-
uses: actions/checkout@v5
55+
uses: actions/checkout@v6
5656
with:
5757
fetch-depth: 0 # We need the full history in order to use Git versioning
5858
- name: Get .NET

0 commit comments

Comments
 (0)