Skip to content

Commit 00faf4c

Browse files
authored
Update dockerimage.yml
1 parent 196b0ea commit 00faf4c

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/dockerimage.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout
11-
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
11+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744
1212

1313
- name: Docker meta
1414
id: meta
15-
uses: docker/metadata-action@818d4b7b91585d195f67373fd9cb0332e31a7175 # v4.6.0
15+
uses: docker/metadata-action@818d4b7b91585d195f67373fd9cb0332e31a7175
1616
with:
1717
images: |
1818
netflixoss/metaflow_metadata_service
@@ -21,21 +21,23 @@ jobs:
2121
type=sha
2222
type=raw,value=latest
2323
24+
# Optionally, you can remove the Docker Hub login step since we are not pushing.
2425
#- name: Login to Docker Hub
25-
# uses: docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc # v2.2.0
26+
# uses: docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc
2627
# with:
2728
# username: ${{ secrets.DOCKER_USERNAME_NETFLIX_OSS }}
2829
# password: ${{ secrets.DOCKER_AUTH_TOKEN_NETFLIX_OSS }}
2930

3031
- name: Build (No Push)
31-
uses: docker/build-push-action@2eb1c1961a95fc15694676618e422e8ba1d63825 # v4.1.1
32+
uses: docker/build-push-action@2eb1c1961a95fc15694676618e422e8ba1d63825
3233
with:
3334
context: .
3435
push: false
3536
tags: ${{ steps.meta.outputs.tags }}
3637
labels: ${{ steps.meta.outputs.labels }}
3738

3839

40+
3941
context: .
4042
push: true
4143
tags: ${{ steps.meta.outputs.tags }}

0 commit comments

Comments
 (0)