Skip to content

Commit 78a57e5

Browse files
committed
Bump the GitHub actions
We're getting this message The following actions uses node12 which is deprecated and will be forced to run on node16: docker/login-action@f054a8b, docker/metadata-action@98669ae, docker/build-push-action@ad44023. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/ This bumps the actions to the latest versions.
1 parent 91f09c9 commit 78a57e5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,15 +60,15 @@ jobs:
6060
run: echo "::set-output name=VERSION::$(make version)"
6161

6262
- name: Log in to the Container registry
63-
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
63+
uses: docker/login-action@v3
6464
with:
6565
registry: ${{ env.REGISTRY }}
6666
username: ${{ github.actor }}
6767
password: ${{ secrets.GITHUB_TOKEN }}
6868

6969
- name: Extract metadata (tags, labels) for Docker
7070
id: meta
71-
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
71+
uses: docker/metadata-action@v5
7272
with:
7373
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
7474

@@ -82,7 +82,7 @@ jobs:
8282
run: go mod vendor
8383

8484
- name: Build and push Docker image
85-
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
85+
uses: docker/build-push-action@v5
8686
with:
8787
context: .
8888
push: true

0 commit comments

Comments
 (0)