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

View File

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