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