Compare commits

...

3 Commits

Author SHA1 Message Date
dependabot[bot] cce4b00176 build(deps): bump docker/build-push-action from 6 to 7
Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 6 to 7.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](https://github.com/docker/build-push-action/compare/v6...v7)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-version: '7'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-06-24 08:32:38 +00:00
Geoff Bourne 2ecf6776e2 Handle non-specific file types in start-utils extraction logic (#4121) 2026-06-23 07:34:36 -05:00
Geoff Bourne dadecdac28 Improved and refactored sponsor labeler workflow (#4123) 2026-06-22 15:19:38 -05:00
5 changed files with 22 additions and 18 deletions
+2 -2
View File
@@ -147,7 +147,7 @@ jobs:
uses: docker/setup-qemu-action@v4.1.0
- name: Build for test
uses: docker/build-push-action@v7.2.0
uses: docker/build-push-action@v7
with:
platforms: linux/amd64
tags: ${{ env.IMAGE_TO_TEST }}
@@ -187,7 +187,7 @@ jobs:
password: ${{ github.token }}
- name: Build and push
uses: docker/build-push-action@v7.2.0
uses: docker/build-push-action@v7
if: github.actor == github.repository_owner
with:
platforms: ${{ matrix.platforms }}
+6 -13
View File
@@ -1,4 +1,5 @@
name: Label Sponsor Contributions
name: Sponsor Labeler
on:
issues:
types:
@@ -9,15 +10,7 @@ on:
jobs:
label-sponsor:
runs-on: ubuntu-latest
permissions:
pull-requests: write
issues: write
steps:
- name: Check if sponsor
uses: JasonEtco/is-sponsor-label-action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
label: sponsor
uses: itzg/github-workflows/.github/workflows/sponsor-labeler.yml@main
with:
author: ${{ github.event.issue.user.login || github.event.pull_request.user.login }}
number: ${{ github.event.issue.number || github.event.pull_request.number }}
+1 -1
View File
@@ -19,7 +19,7 @@ jobs:
uses: docker/setup-buildx-action@v3
- name: Build docs image
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: .
file: docs/Dockerfile
+2 -2
View File
@@ -62,7 +62,7 @@ jobs:
uses: docker/setup-buildx-action@v4.1.0
- name: Confirm multi-arch build
uses: docker/build-push-action@v7.2.0
uses: docker/build-push-action@v7
with:
platforms: ${{ matrix.platforms }}
# ensure latest base image is used
@@ -73,7 +73,7 @@ jobs:
cache-from: type=gha,scope=${{ matrix.variant }}
- name: Build for test
uses: docker/build-push-action@v7.2.0
uses: docker/build-push-action@v7
with:
# Only build single platform since loading multi-arch image into daemon fails with
# "docker exporter does not currently support exporting manifest lists"
+11
View File
@@ -560,6 +560,17 @@ function extract() {
# remaining args are paths within the archive to extract; if none, extract everything
type=$(file -b --mime-type "${src}")
if [[ "$type" == application/octet-stream ]]; then
logWarning "Detected non-specific file type $type for $src"
case "$src" in
*.zip)
log "Assuming zip from extension"
type=application/zip
;;
# otherwise fall through to
esac
fi
case "${type}" in
application/zip)
unzip -o -q -d "${destDir}" "${src}" "$@"