Skip to content

Commit b05c674

Browse files
Bump the actions group across 1 directory with 4 updates
Bumps the actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/setup-dotnet](https://github.com/actions/setup-dotnet), [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 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/setup-dotnet` from 4 to 5 - [Release notes](https://github.com/actions/setup-dotnet/releases) - [Commits](actions/setup-dotnet@v4...v5) 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 4 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v6) --- 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/setup-dotnet dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent de7409e commit b05c674

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
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: 8 additions & 8 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

@@ -26,7 +26,7 @@ jobs:
2626
- id: gitversion
2727
uses: gittools/actions/gitversion/[email protected]
2828

29-
- uses: actions/setup-dotnet@v4
29+
- uses: actions/setup-dotnet@v5
3030
with:
3131
dotnet-version: 6.0.x
3232

@@ -66,7 +66,7 @@ jobs:
6666
src/json-ld.net/json-ld.net.csproj \
6767
--output ${{ github.workspace }}/nugets/
6868
69-
- uses: actions/upload-artifact@v4
69+
- uses: actions/upload-artifact@v5
7070
with:
7171
name: nugets
7272
path: nugets
@@ -78,12 +78,12 @@ jobs:
7878

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

8585
- name: setup dotnet
86-
uses: actions/setup-dotnet@v4
86+
uses: actions/setup-dotnet@v5
8787
with:
8888
dotnet-version: 6.0.x
8989
source-url: https://nuget.pkg.github.com/linked-data-dotnet/index.json
@@ -99,11 +99,11 @@ jobs:
9999
needs: build
100100

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

106-
- uses: actions/setup-dotnet@v4
106+
- uses: actions/setup-dotnet@v5
107107
with:
108108
dotnet-version: 6.0.x
109109
source-url: https://api.nuget.org/v3/index.json
@@ -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@v6
123123
with:
124124
name: nugets
125125

.github/workflows/rebase.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/rebase')
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414
with:
1515
fetch-depth: 0
1616
- name: Automatic Rebase

0 commit comments

Comments
 (0)