Skip to content

Commit b0d9475

Browse files
authored
Merge pull request #1087 from dlcs/feature/update_actions
Bump packages in github actions
2 parents 988158f + 64439cb commit b0d9475

File tree

3 files changed

+7
-10
lines changed

3 files changed

+7
-10
lines changed

.github/actions/docker-build-and-push/action.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,11 @@ runs:
1919
using: "composite"
2020
steps:
2121
- id: checkout
22-
uses: actions/checkout@v2
22+
uses: actions/checkout@v6
2323
- id: docker-setup-buildx
24-
uses: docker/setup-buildx-action@v2
25-
with:
26-
driver-opts: |
27-
image=moby/buildkit:v0.10.6
24+
uses: docker/setup-buildx-action@v3
2825
- id: docker-meta
29-
uses: docker/metadata-action@v3
26+
uses: docker/metadata-action@v5
3027
with:
3128
images: ghcr.io/dlcs/${{ inputs.image-name }}
3229
tags: |
@@ -37,7 +34,7 @@ runs:
3734
type=semver,pattern={{major}}.{{minor}}
3835
type=semver,pattern={{major}}
3936
- id: docker-login
40-
uses: docker/login-action@v1
37+
uses: docker/login-action@v3
4138
with:
4239
registry: ghcr.io
4340
username: ${{ github.actor }}

.github/workflows/run_build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
SOLUTION: "protagonist.sln"
2222
steps:
2323
- id: checkout
24-
uses: actions/checkout@v5
24+
uses: actions/checkout@v6
2525
- id: setup-dotnet
2626
uses: actions/setup-dotnet@v5
2727
with:
@@ -56,7 +56,7 @@ jobs:
5656
- image: "migrator"
5757
dockerfile: "Dockerfile.Migrator"
5858
steps:
59-
- uses: actions/checkout@v5
59+
- uses: actions/checkout@v6
6060
- uses: ./.github/actions/docker-build-and-push
6161
with:
6262
image-name: ${{ matrix.image }}

.github/workflows/run_sonar.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
java-version: 17
1919
distribution: 'zulu' # Alternative distribution options are available.
2020
- id: checkout
21-
uses: actions/checkout@v5
21+
uses: actions/checkout@v6
2222
- id: setup-dotnet
2323
uses: actions/setup-dotnet@v5
2424
with:

0 commit comments

Comments
 (0)