Skip to content

Commit fd853e1

Browse files
authored
Merge branch 'main' into multi-platform-image
2 parents 14bf27c + 9b5a564 commit fd853e1

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ jobs:
3333

3434
- name: Extract metadata (tags, labels) for Docker
3535
id: meta
36-
uses: docker/metadata-action@v5
36+
uses: docker/metadata-action@v5.6.1
3737
with:
3838
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
3939
tags: |
4040
type=raw,value=${{ matrix.version }}
4141
4242
- name: Build and push Docker image
43-
uses: docker/build-push-action@v6
43+
uses: docker/build-push-action@v6.14.0
4444
with:
4545
context: .
4646
push: false

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,22 +39,22 @@ jobs:
3939
uses: actions/checkout@v4
4040

4141
- name: Log in to the Container registry
42-
uses: docker/login-action@v3
42+
uses: docker/login-action@v3.4.0
4343
with:
4444
registry: ${{ env.REGISTRY }}
4545
username: ${{ github.actor }}
4646
password: ${{ secrets.GITHUB_TOKEN }}
4747

4848
- name: Extract metadata (tags, labels) for Docker
4949
id: meta
50-
uses: docker/metadata-action@v5
50+
uses: docker/metadata-action@v5.6.1
5151
with:
5252
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
5353
tags: |
5454
type=raw,value=${{ matrix.version }}
5555
5656
- name: Build and push Docker image
57-
uses: docker/build-push-action@v6
57+
uses: docker/build-push-action@v6.14.0
5858
with:
5959
context: .
6060
push: true

0 commit comments

Comments
 (0)