Skip to content

Commit

Permalink
Update build-dev-image.yml
Browse files Browse the repository at this point in the history
updated action versions to node 20
  • Loading branch information
elvinpoole authored Mar 18, 2024
1 parent 7ea799c commit 02f21e8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-dev-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,18 @@ jobs:
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Log in to the Container registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

# This only gets the date in this job, because
# there is no release tag
Expand All @@ -42,7 +42,7 @@ jobs:
echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
- name: Build docker image
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: ${{ env.BUILD_DIR }}
file: ${{ env.BUILD_DIR }}/Dockerfile
Expand Down

0 comments on commit 02f21e8

Please sign in to comment.