125125env :
126126 BUILDX_VERSION : " v0.30.1"
127127 BUILDKIT_IMAGE : " moby/buildkit:v0.26.2"
128- DOCKER_ACTIONS_TOOLKIT_MODULE : " @docker/actions-toolkit@0.67 .0"
128+ DOCKER_ACTIONS_TOOLKIT_MODULE : " @docker/actions-toolkit@0.71 .0"
129129 COSIGN_VERSION : " v3.0.2"
130130 LOCAL_EXPORT_DIR : " /tmp/buildx-output"
131131 MATRIX_SIZE_LIMIT : " 20"
@@ -144,7 +144,7 @@ jobs:
144144 INPUT_DAT-MODULE : ${{ env.DOCKER_ACTIONS_TOOLKIT_MODULE }}
145145 with :
146146 script : |
147- await exec.exec('npm', ['install', '--prefer-offline', '--no-audit', '-- ignore-scripts', core.getInput('dat-module')]);
147+ await exec.exec('npm', ['install', '--prefer-offline', '--ignore-scripts', core.getInput('dat-module')]);
148148 -
149149 name : Set outputs
150150 id : set
@@ -312,7 +312,7 @@ jobs:
312312 INPUT_DAT-MODULE : ${{ env.DOCKER_ACTIONS_TOOLKIT_MODULE }}
313313 with :
314314 script : |
315- await exec.exec('npm', ['install', '--prefer-offline', '--no-audit', '-- ignore-scripts', core.getInput('dat-module')]);
315+ await exec.exec('npm', ['install', '--prefer-offline', '--ignore-scripts', core.getInput('dat-module')]);
316316 -
317317 name : Docker meta
318318 id : meta
@@ -519,7 +519,12 @@ jobs:
519519 const { Install } = require('@docker/actions-toolkit/lib/cosign/install');
520520
521521 const cosignInstall = new Install();
522- const cosignBinPath = await cosignInstall.download(core.getInput('cosign-version'), true, true);
522+ const cosignBinPath = await cosignInstall.download({
523+ version: core.getInput('cosign-version'),
524+ ghaNoCache: true,
525+ skipState: true,
526+ verifySignature: true
527+ });
523528 await cosignInstall.install(cosignBinPath);
524529
525530 const cosign = new Cosign();
0 commit comments