Skip to content

Commit 346cfbb

Browse files
deps(actions): bump the actions group with 5 updates (#233)
Bumps the actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [actions/setup-dotnet](https://github.com/actions/setup-dotnet) | `4` | `5` | | [hadolint/hadolint-action](https://github.com/hadolint/hadolint-action) | `3.1.0` | `3.3.0` | | [peter-evans/dockerhub-description](https://github.com/peter-evans/dockerhub-description) | `4` | `5` | | [actions/github-script](https://github.com/actions/github-script) | `7` | `8` | 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/setup-dotnet` from 4 to 5 - [Release notes](https://github.com/actions/setup-dotnet/releases) - [Commits](actions/setup-dotnet@v4...v5) Updates `hadolint/hadolint-action` from 3.1.0 to 3.3.0 - [Release notes](https://github.com/hadolint/hadolint-action/releases) - [Commits](hadolint/hadolint-action@v3.1.0...v3.3.0) Updates `peter-evans/dockerhub-description` from 4 to 5 - [Release notes](https://github.com/peter-evans/dockerhub-description/releases) - [Commits](peter-evans/dockerhub-description@v4...v5) Updates `actions/github-script` from 7 to 8 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v7...v8) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' 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: hadolint/hadolint-action dependency-version: 3.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: peter-evans/dockerhub-description dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/github-script dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent bc93f89 commit 346cfbb

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/codeql.yml

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

3535
steps:
3636
- name: Checkout repository
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: ${{ env.DOTNET_VERSION }}
4343

@@ -67,10 +67,10 @@ jobs:
6767

6868
steps:
6969
- name: Checkout repository
70-
uses: actions/checkout@v4
70+
uses: actions/checkout@v6
7171

7272
- name: Lint Dockerfile
73-
uses: hadolint/hadolint-action@v3.1.0
73+
uses: hadolint/hadolint-action@v3.3.0
7474
with:
7575
dockerfile: docker/Dockerfile
7676
failure-threshold: warning
@@ -90,7 +90,7 @@ jobs:
9090

9191
steps:
9292
- name: Checkout repository
93-
uses: actions/checkout@v4
93+
uses: actions/checkout@v6
9494

9595
- name: Run actionlint
9696
uses: raven-actions/actionlint@v2

.github/workflows/docker-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
steps:
3232
- name: Checkout code
33-
uses: actions/checkout@v4
33+
uses: actions/checkout@v6
3434

3535
- name: Set up QEMU
3636
uses: docker/setup-qemu-action@v3
@@ -73,7 +73,7 @@ jobs:
7373
sbom: true
7474

7575
- name: Update Docker Hub description
76-
uses: peter-evans/dockerhub-description@v4
76+
uses: peter-evans/dockerhub-description@v5
7777
with:
7878
username: ${{ secrets.DOCKERHUB_USERNAME }}
7979
password: ${{ secrets.DOCKERHUB_TOKEN }}

.github/workflows/nuget-release.yml

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

3535
steps:
3636
- name: Checkout code
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: ${{ env.DOTNET_VERSION }}
4343

.github/workflows/release-please.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636

3737
steps:
3838
- name: Trigger GitHub Release (binaries)
39-
uses: actions/github-script@v7
39+
uses: actions/github-script@v8
4040
with:
4141
script: |
4242
await github.rest.actions.createWorkflowDispatch({
@@ -50,7 +50,7 @@ jobs:
5050
});
5151
5252
- name: Trigger NuGet Release
53-
uses: actions/github-script@v7
53+
uses: actions/github-script@v8
5454
with:
5555
script: |
5656
await github.rest.actions.createWorkflowDispatch({
@@ -64,7 +64,7 @@ jobs:
6464
});
6565
6666
- name: Trigger Docker Release
67-
uses: actions/github-script@v7
67+
uses: actions/github-script@v8
6868
with:
6969
script: |
7070
await github.rest.actions.createWorkflowDispatch({

0 commit comments

Comments
 (0)