From 1e1761e5e70524eadbfb10069ca51ebcab51d82f Mon Sep 17 00:00:00 2001 From: Christopher Kolstad Date: Thu, 19 Dec 2024 15:10:23 +0100 Subject: [PATCH] chore: Use 20.18.1 instead of 20.14 as our node base image (#9004) We already have 20.18.1 set as the default in our Dockerfile, but we override it with an arg from the workflow, so this brings the workflow up to date with what we use as our default. --- .github/workflows/docker_publish.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker_publish.yaml b/.github/workflows/docker_publish.yaml index 7852cabf1afa..ba0de6ea5b5c 100644 --- a/.github/workflows/docker_publish.yaml +++ b/.github/workflows/docker_publish.yaml @@ -24,7 +24,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - version: [ 20.14.0-alpine ] + version: [ 20.18.1-alpine ] steps: - name: Checkout tag v${{ inputs.version }} if: ${{ inputs.version != '' }}