Skip to content

Commit e8de564

Browse files
authored
Merge pull request #125 from crazy-max/update-actions-toolkit
update actions-toolkit to 0.80.0
2 parents 2c8c9c6 + 803057a commit e8de564

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/bake.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ env:
150150
BUILDKIT_IMAGE: "moby/buildkit:v0.28.0"
151151
SBOM_IMAGE: "docker/buildkit-syft-scanner:1.10.0"
152152
BINFMT_IMAGE: "tonistiigi/binfmt:qemu-v10.2.1-65"
153-
DOCKER_ACTIONS_TOOLKIT_MODULE: "@docker/actions-toolkit@0.76.0"
153+
DOCKER_ACTIONS_TOOLKIT_MODULE: "@docker/actions-toolkit@0.80.0"
154154
COSIGN_VERSION: "v3.0.2"
155155
LOCAL_EXPORT_DIR: "/tmp/buildx-output"
156156
MATRIX_SIZE_LIMIT: "20"
@@ -250,7 +250,7 @@ jobs:
250250
script: |
251251
const os = require('os');
252252
const { Bake } = require('@docker/actions-toolkit/lib/buildx/bake');
253-
const { GitHub } = require('@docker/actions-toolkit/lib/github');
253+
const { GitHub } = require('@docker/actions-toolkit/lib/github/github');
254254
const { Util } = require('@docker/actions-toolkit/lib/util');
255255
256256
const inpSbomImage = core.getInput('sbom-image');
@@ -617,7 +617,7 @@ jobs:
617617
script: |
618618
const os = require('os');
619619
const { Build } = require('@docker/actions-toolkit/lib/buildx/build');
620-
const { GitHub } = require('@docker/actions-toolkit/lib/github');
620+
const { GitHub } = require('@docker/actions-toolkit/lib/github/github');
621621
const { Util } = require('@docker/actions-toolkit/lib/util');
622622
623623
const inpPlatform = core.getInput('platform');

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ env:
153153
BUILDKIT_IMAGE: "moby/buildkit:v0.28.0"
154154
SBOM_IMAGE: "docker/buildkit-syft-scanner:1.10.0"
155155
BINFMT_IMAGE: "tonistiigi/binfmt:qemu-v10.2.1-65"
156-
DOCKER_ACTIONS_TOOLKIT_MODULE: "@docker/actions-toolkit@0.76.0"
156+
DOCKER_ACTIONS_TOOLKIT_MODULE: "@docker/actions-toolkit@0.80.0"
157157
COSIGN_VERSION: "v3.0.2"
158158
LOCAL_EXPORT_DIR: "/tmp/buildx-output"
159159
MATRIX_SIZE_LIMIT: "20"
@@ -245,7 +245,7 @@ jobs:
245245
INPUT_SIGN: ${{ inputs.sign }}
246246
with:
247247
script: |
248-
const { GitHub } = require('@docker/actions-toolkit/lib/github');
248+
const { GitHub } = require('@docker/actions-toolkit/lib/github/github');
249249
const { Util } = require('@docker/actions-toolkit/lib/util');
250250
251251
const inpMatrixSizeLimit = parseInt(core.getInput('matrix-size-limit'), 10);
@@ -516,7 +516,7 @@ jobs:
516516
with:
517517
script: |
518518
const { Build } = require('@docker/actions-toolkit/lib/buildx/build');
519-
const { GitHub } = require('@docker/actions-toolkit/lib/github');
519+
const { GitHub } = require('@docker/actions-toolkit/lib/github/github');
520520
521521
const inpPlatform = core.getInput('platform');
522522
const platformPairSuffix = inpPlatform ? `-${inpPlatform.replace(/\//g, '-')}` : '';

0 commit comments

Comments
 (0)