From 3387fc025fcef72276d0a0c3aa0d5f337db179bc Mon Sep 17 00:00:00 2001 From: CrazyMax <1951866+crazy-max@users.noreply.github.com> Date: Wed, 17 Dec 2025 11:53:48 +0100 Subject: [PATCH] ignore scripts during install of actions-toolkit module Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com> --- .github/workflows/bake.yml | 4 ++-- .github/workflows/build.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/bake.yml b/.github/workflows/bake.yml index 3ba6867..dc470e3 100644 --- a/.github/workflows/bake.yml +++ b/.github/workflows/bake.yml @@ -174,7 +174,7 @@ jobs: INPUT_DAT-MODULE: ${{ env.DOCKER_ACTIONS_TOOLKIT_MODULE }} with: script: | - await exec.exec('npm', ['install', '--prefer-offline', '--no-audit', core.getInput('dat-module')]); + await exec.exec('npm', ['install', '--prefer-offline', '--no-audit', '--ignore-scripts', core.getInput('dat-module')]); - name: Set includes id: set @@ -321,7 +321,7 @@ jobs: INPUT_DAT-MODULE: ${{ env.DOCKER_ACTIONS_TOOLKIT_MODULE }} with: script: | - await exec.exec('npm', ['install', '--prefer-offline', '--no-audit', core.getInput('dat-module')]); + await exec.exec('npm', ['install', '--prefer-offline', '--no-audit', '--ignore-scripts', core.getInput('dat-module')]); - name: Docker meta id: meta diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cf02592..4f96b5b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -173,7 +173,7 @@ jobs: INPUT_DAT-MODULE: ${{ env.DOCKER_ACTIONS_TOOLKIT_MODULE }} with: script: | - await exec.exec('npm', ['install', '--prefer-offline', '--no-audit', core.getInput('dat-module')]); + await exec.exec('npm', ['install', '--prefer-offline', '--no-audit', '--ignore-scripts', core.getInput('dat-module')]); - name: Set includes id: set @@ -275,7 +275,7 @@ jobs: INPUT_DAT-MODULE: ${{ env.DOCKER_ACTIONS_TOOLKIT_MODULE }} with: script: | - await exec.exec('npm', ['install', '--prefer-offline', '--no-audit', core.getInput('dat-module')]); + await exec.exec('npm', ['install', '--prefer-offline', '--no-audit', '--ignore-scripts', core.getInput('dat-module')]); - name: Docker meta id: meta