Browse Source

Bump checkout to use node16

testing
GilbN 3 years ago
parent
commit
2520432f40
  1. 10
      .github/workflows/docker-build.yml

10
.github/workflows/docker-build.yml

@ -14,7 +14,7 @@ on:
- develop - develop
- testing - testing
tag: tag:
description: 'Add a tag' description: 'Append a the tag with "-custom" e.g :develop-custom'
push: push:
branches: branches:
- develop - develop
@ -29,7 +29,7 @@ jobs:
architecture: [linux-arm-v7,linux-arm64,linux-amd64] architecture: [linux-arm-v7,linux-arm64,linux-amd64]
steps: steps:
- name: checkout - name: checkout
uses: actions/checkout@v2 uses: actions/checkout@v3.1.0
with: with:
fetch-depth: 0 fetch-depth: 0
- name: Prepare - name: Prepare
@ -77,8 +77,8 @@ jobs:
cache-from: docker.io/${{ env.cache }} cache-from: docker.io/${{ env.cache }}
cache-to: docker.io/${{ env.cache }} cache-to: docker.io/${{ env.cache }}
tags: | tags: |
docker.io/${{ env.tag }} docker.io/${{ env.tag }}${{ github.event.inputs.tag }}
ghcr.io/${{ env.tag }} ghcr.io/${{ env.tag }}${{ github.event.inputs.tag }}
labels: | labels: |
org.opencontainers.image.created=${{ env.created }} org.opencontainers.image.created=${{ env.created }}
org.opencontainers.image.title=${{ env.title }} org.opencontainers.image.title=${{ env.title }}
@ -100,7 +100,7 @@ jobs:
needs: [build-and-push-it-to-the-limit] needs: [build-and-push-it-to-the-limit]
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v2.5.0 uses: actions/checkout@v3.1.0
- name: Login to DockerHub - name: Login to DockerHub
if: matrix.registry == 'docker.io' if: matrix.registry == 'docker.io'

Loading…
Cancel
Save