Skip to content

Commit f0f702a

Browse files
committed
Update versions of external container actions
1 parent d288f88 commit f0f702a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -132,19 +132,19 @@ runs:
132132
133133
- name: Set up Docker Buildx
134134
if: success()
135-
uses: docker/setup-buildx-action@v1
135+
uses: docker/setup-buildx-action@v2
136136

137137
- name: Container Registry Login
138138
if: success() && fromJSON(inputs.push_image)
139-
uses: docker/login-action@v1
139+
uses: docker/login-action@v2
140140
with:
141141
registry: ${{ inputs.registry_url }}
142142
username: ${{ inputs.registry_user }}
143143
password: ${{ inputs.registry_pass }}
144144

145145
- name: Build and push Docker images
146146
if: success()
147-
uses: docker/build-push-action@v2.8.0
147+
uses: docker/build-push-action@v3.2.0
148148
with:
149149
push: ${{ fromJSon(inputs.push_image) }}
150150
context: ${{ inputs.context }}
@@ -158,7 +158,7 @@ runs:
158158

159159
- name: Cache Docker images
160160
if: success() && fromJSON(inputs.cache_image)
161-
uses: actions/cache@v2
161+
uses: actions/cache@v3
162162
with:
163163
path: /tmp/.buildx-cache
164164
key: ${{ steps.generate-tags.outputs.cache_key }}

0 commit comments

Comments
 (0)