Skip to content

Commit 375a443

Browse files
authored
Upgrade Docker Actions to fix multi-arch caching (#91)
Upgrades the following actions to their latest versions: - docker/build-push-action from v4 to v6 - docker/login-action from v2 to v3
1 parent 71e73b4 commit 375a443

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/docker-multi-arch.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
version: latest
7676

7777
- name: Docker Build and Cache
78-
uses: docker/build-push-action@v4
78+
uses: docker/build-push-action@v6
7979
with:
8080
context: .
8181
file: ${{ inputs.PATH_TO_DOCKERFILE }}
@@ -134,14 +134,14 @@ jobs:
134134
type=sha,prefix=${{ steps.get_version.outputs.version }},enable=${{ inputs.IS_RELEASE == 'true' }}
135135
136136
- name: Login to Docker Registry
137-
uses: docker/login-action@v2
137+
uses: docker/login-action@v3
138138
with:
139139
registry: ${{ inputs.GLOBAL_REPO_NAME }}
140140
username: ${{ env.DOCKER_USERNAME }}
141141
password: ${{ env.DOCKER_PASSWORD }}
142142

143143
- name: Docker Push
144-
uses: docker/build-push-action@v4
144+
uses: docker/build-push-action@v6
145145
with:
146146
context: .
147147
file: ${{ inputs.PATH_TO_DOCKERFILE }}

0 commit comments

Comments
 (0)