Compare commits

...

5 Commits

Author SHA1 Message Date
CrazyMax 7a6c80e3f1
Merge f3677bb025 into 9e436ba9f2 2025-09-29 10:47:45 +00:00
CrazyMax 9e436ba9f2
Merge pull request #1413 from osman-butt/docs/update-checkout-v5
docs: update checkout action to v5 in README examples
2025-09-29 12:15:59 +02:00
osman-butt 62929198b5 docs: update checkout action to v5 in README
Signed-off-by: osman-butt <butt.osman@gmail.com>
2025-09-06 00:04:00 +02:00
CrazyMax f3677bb025
chore: update generated content
Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
2025-07-25 14:22:13 +02:00
CrazyMax fc5427c58f
skip summary generation for the kubernetes driver
Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
2025-07-25 14:21:14 +02:00
4 changed files with 5 additions and 3 deletions

View File

@ -131,7 +131,7 @@ jobs:
steps:
-
name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
-
name: Login to Docker Hub
uses: docker/login-action@v3

2
dist/index.js generated vendored

File diff suppressed because one or more lines are too long

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

View File

@ -175,6 +175,8 @@ actionsToolkit.run(
core.info('Build summary is not yet supported on GHES');
} else if (!(await toolkit.buildx.versionSatisfies('>=0.13.0'))) {
core.info('Build summary requires Buildx >= 0.13.0');
} else if (builder && builder.driver === 'kubernetes') {
core.info('Build summary is not yet supported by the Kubernetes driver');
} else if (!ref) {
core.info('Build summary requires a build reference');
} else {