Skip to content

chore(deps): update docker/setup-qemu-action digest to 53851d1 (#64) #29

chore(deps): update docker/setup-qemu-action digest to 53851d1 (#64)

chore(deps): update docker/setup-qemu-action digest to 53851d1 (#64) #29

Workflow file for this run

name: Docker image (Node)
on:
push:
branches:
- master
paths:
- '**/ci-node.yml'
- 'nodejs.Dockerfile'
- 'nodejs.entrypoint.sh'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
nodejs:
runs-on: ubuntu-latest
if: ${{ !contains(github.event.head_commit.message, '[skip-ci]') }}
strategy:
fail-fast: false
matrix:
node_version: [12, 14, 16, 18, 19, 20, 22]
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Set up QEMU
uses: docker/setup-qemu-action@53851d14592bedcffcf25ea515637cff71ef929a # v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3
- name: Login to DockerHub
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@b32b51a8eda65d6793cd0494a773d4f6bcef32dc # v6
with:
build-args: NODE_VERSION=${{ matrix.node_version }}
context: .
file: nodejs.Dockerfile
platforms: linux/amd64, linux/arm64
push: true
tags: djoh/all-in-one:node${{ matrix.node_version }}
cache-from: type=registry,ref=djoh/all-in-one:buildcache_node${{ matrix.node_version }}
cache-to: type=registry,ref=djoh/all-in-one:buildcache_node${{ matrix.node_version }},mode=max