Skip to content
This repository has been archived by the owner on Jul 11, 2024. It is now read-only.

Commit

Permalink
Use broad version numbers in build-container-image.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
williamjacksn authored Sep 14, 2023
1 parent b3e6fb0 commit a7b8ed7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-container-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
steps:

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2.10.0
uses: docker/setup-buildx-action@v2

- name: Build the container image
uses: docker/build-push-action@v4.1.1
uses: docker/build-push-action@v4
with:
build-args: |
BUILDKIT_INLINE_CACHE=1
Expand All @@ -38,15 +38,15 @@ jobs:
- name: Log in to GitHub container registry
if: github.event_name == 'push' || github.event_name == 'release'
uses: docker/login-action@v2.2.0
uses: docker/login-action@v2
with:
registry: ghcr.io
password: ${{ github.token }}
username: ${{ github.actor }}

- name: Log in to Docker Hub
if: github.event_name == 'push' || github.event_name == 'release'
uses: docker/login-action@v2.2.0
uses: docker/login-action@v2
with:
password: ${{ secrets.docker_hub_password }}
username: ${{ secrets.docker_hub_username }}
Expand Down

0 comments on commit a7b8ed7

Please sign in to comment.