fix tag work flow (#8618)

upgrade docker build to 18
This commit is contained in:
Eugenio Romano
2023-06-01 18:16:29 +02:00
committed by GitHub
parent 3afe323840
commit 959f20b3a5
2 changed files with 4 additions and 4 deletions

View File

@@ -3,7 +3,7 @@ name: "git-tag"
on:
workflow_call:
inputs:
dry-run-release:
dry-run-flag:
description: 'enable dry-run on artifact push'
required: false
type: boolean
@@ -84,7 +84,7 @@ jobs:
uses: ./.github/workflows/release.yml
secrets: inherit
with:
dry-run-release: false
dry-run-flag: false
setup:
needs: release
@@ -99,7 +99,7 @@ jobs:
- id: set-dryrun
uses: ./.github/actions/enable-dryrun
with:
dry-run-flag: ${{ inputs.dry-run-release }}
dry-run-flag: ${{ inputs.dry-run-flag }}
- name: install NPM
uses: actions/setup-node@v3
with:

View File

@@ -1,6 +1,6 @@
# 1. Generate licenses
FROM node:16.20-alpine3.17 AS builder
FROM node:18.16-alpine3.17 AS builder
WORKDIR /usr/src/alfresco
COPY package.json package.json