Skip to content

Commit c56781d

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

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: build & run tests
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
with:
1717
fetch-depth: 0
1818
- name: docker build

.github/workflows/dotnet.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fullSemVer: ${{ steps.gitversion.outputs.fullSemVer }}
1616

1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919
with:
2020
fetch-depth: 0
2121

@@ -78,7 +78,7 @@ jobs:
7878

7979
steps:
8080
- name: download artifact
81-
uses: actions/download-artifact@v4
81+
uses: actions/download-artifact@v5
8282
with:
8383
name: nugets
8484

@@ -99,7 +99,7 @@ jobs:
9999
needs: build
100100

101101
steps:
102-
- uses: actions/download-artifact@v4
102+
- uses: actions/download-artifact@v5
103103
with:
104104
name: nugets
105105

@@ -119,7 +119,7 @@ jobs:
119119
if: startsWith(github.ref, 'refs/tags/')
120120

121121
steps:
122-
- uses: actions/download-artifact@v4
122+
- uses: actions/download-artifact@v5
123123
with:
124124
name: nugets
125125

0 commit comments

Comments
 (0)