Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
cb85f4d
docs: add extra step for QEMU issue
github-actions[bot] Mar 13, 2025
4c711a6
chore: ignore docker/actions-toolkit deps with dependabot
github-actions[bot] Mar 13, 2025
cdc50dd
remove uuid package and switch to crypto
github-actions[bot] Mar 13, 2025
5a69346
changed signature for install method
github-actions[bot] Mar 13, 2025
ccb944c
Support downloading binaries from docker images
github-actions[bot] Mar 13, 2025
db410e9
Support downloading binaries from docker images
github-actions[bot] Mar 13, 2025
1f1ca83
Support downloading binaries from docker images
github-actions[bot] Mar 13, 2025
1acd9f6
Add rootless support
github-actions[bot] Mar 13, 2025
5bf08cd
Add rootless support
github-actions[bot] Mar 13, 2025
6bd2544
Add rootless support
github-actions[bot] Mar 13, 2025
39b27ef
Add rootless support
github-actions[bot] Mar 13, 2025
f473fdb
Add rootless support
github-actions[bot] Mar 13, 2025
49feb21
readme: remove qemu set up workaround
github-actions[bot] Mar 13, 2025
8d32d81
chore: github form templates
github-actions[bot] Mar 13, 2025
5584fb8
docs: note about action usage
github-actions[bot] Mar 13, 2025
aafb438
tcp-port opt to expose Docker API to a local TCP address
github-actions[bot] Mar 13, 2025
f4ed3ae
tcp-port opt to expose Docker API to a local TCP address
github-actions[bot] Mar 13, 2025
f17a798
tcp-port opt to expose Docker API to a local TCP address
github-actions[bot] Mar 13, 2025
05e032d
tcp-port opt to expose Docker API to a local TCP address
github-actions[bot] Mar 13, 2025
45b621d
tcp-port opt to expose Docker API to a local TCP address
github-actions[bot] Mar 13, 2025
c16a4b8
docs: Document `version` csv format
github-actions[bot] Mar 13, 2025
ee76632
update bake-action to v6
github-actions[bot] Mar 13, 2025
7c7b910
Merge branch 'main' into auto-cherry-pick
Raj-StepSecurity Mar 20, 2025
99b3c79
ci: enforce QEMU version on macOS
Raj-StepSecurity Oct 4, 2024
be5dec7
ci: matrix entry for image type
Raj-StepSecurity Oct 29, 2024
40ad150
ci: rootless job
Raj-StepSecurity Nov 14, 2024
7727a71
ci: fix deprecated input for codecov-action
Raj-StepSecurity Nov 18, 2024
9d440e6
ci: remove qemu set up workaround
Raj-StepSecurity Nov 25, 2024
5c98d6b
ci: bump docker version
Raj-StepSecurity Nov 25, 2024
a0cfab8
chore: migrate to docker org
Raj-StepSecurity Sep 13, 2023
a0fc18f
ci: disable build summary
Raj-StepSecurity Dec 6, 2024
9263acb
tcp-port opt to expose Docker API to a local TCP address
Raj-StepSecurity Mar 20, 2025
5098ade
update bake-action to v6
Raj-StepSecurity Jan 8, 2025
f55ac63
ci: test ubuntu arm64 runners
Raj-StepSecurity Jan 28, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 0 additions & 34 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,34 +0,0 @@
---
name: Bug report
about: Create a report to help us improve
---

### Behaviour

#### Steps to reproduce this issue

1.
2.
3.

#### Expected behaviour

> Tell us what should happen

#### Actual behaviour

> Tell us what happens instead

### Configuration

* Repository URL (if public):
* Build URL (if public):

```yml
# paste your YAML workflow file here and remove sensitive data
```

### Logs

> Download the [log file of your build](https://docs.github.com/en/actions/managing-workflow-runs/using-workflow-run-logs#downloading-logs)
> and [attach it](https://docs.github.com/en/github/managing-your-work-on-github/file-attachments-on-issues-and-pull-requests) to this issue.
31 changes: 0 additions & 31 deletions .github/SUPPORT.md

This file was deleted.

5 changes: 5 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ updates:
directory: "/"
schedule:
interval: "daily"
ignore:
# ignore this dependency
# it seems a bug with dependabot as pining to commit sha should not
# trigger a new version similar to https://github.com/docker/buildx/pull/2222#issuecomment-1919092153
- dependency-name: "docker/actions-toolkit"
labels:
- "dependencies"
- "bot"
Expand Down
79 changes: 60 additions & 19 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ on:
pull_request:

env:
DOCKER_VERSION: v24.0.9
DOCKER_VERSION: v27.3.1
DOCKER_BUILD_SUMMARY: false

jobs:
main:
Expand All @@ -27,10 +28,12 @@ jobs:
matrix:
os:
- ubuntu-latest
- ubuntu-24.04-arm
#- macos-14 # no virt: https://github.com/docker/actions-toolkit/issues/317
- windows-latest
version:
- pinned
- latest
- v27.3.1
- type=image,tag=27.3.1
include:
- os: macos-13
version: pinned
Expand All @@ -43,22 +46,11 @@ jobs:
-
name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
-
name: Set version
shell: bash
run: |
if [ "${{ matrix.version }}" != "pinned" ]; then
echo "DOCKER_VERSION=${{ matrix.version }}" >> $GITHUB_ENV
fi
-
name: Set up Docker
uses: ./
with:
version: ${{ env.DOCKER_VERSION }}
-
name: Dump context
if: always()
uses: crazy-max/ghaction-dump-context@5355a8e5e6ac5a302e746a1c4b7747a0393863c8 # v2.3.0
version: ${{ matrix.version }}

channel:
runs-on: ${{ matrix.os }}
Expand All @@ -67,6 +59,7 @@ jobs:
matrix:
os:
- ubuntu-latest
- ubuntu-24.04-arm
#- macos-14 # no virt: https://github.com/docker/actions-toolkit/issues/317
- windows-latest
steps:
Expand All @@ -82,7 +75,7 @@ jobs:
name: Set up Docker
uses: ./
with:
version: v24.0.0-rc.4
version: ${{ env.DOCKER_VERSION }}
channel: test
-
name: Dump context
Expand All @@ -96,6 +89,7 @@ jobs:
matrix:
os:
- ubuntu-latest
- ubuntu-24.04-arm
#- macos-14 # no virt: https://github.com/docker/actions-toolkit/issues/317
- windows-latest
steps:
Expand All @@ -111,6 +105,7 @@ jobs:
name: Set up Docker
uses: ./
with:
version: ${{ env.DOCKER_VERSION }}
daemon-config: |
{
"debug": true,
Expand All @@ -130,6 +125,7 @@ jobs:
matrix:
os:
- ubuntu-latest
- ubuntu-24.04-arm
#- macos-14 # no virt: https://github.com/docker/actions-toolkit/issues/317
- macos-13
- windows-latest
Expand Down Expand Up @@ -172,6 +168,8 @@ jobs:
-
name: Set up Docker
uses: ./
with:
version: ${{ env.DOCKER_VERSION }}
env:
LIMA_START_ARGS: --cpus 4 --memory 8

Expand Down Expand Up @@ -323,12 +321,55 @@ jobs:
name: Set up Docker
uses: ./
with:
version: ${{ env.DOCKER_VERSION }}
set-host: true
-
name: List contexts
run: |
docker context ls

rootless:
runs-on: ubuntu-latest
steps:
-
name: Dump context
if: always()
uses: crazy-max/ghaction-dump-context@5355a8e5e6ac5a302e746a1c4b7747a0393863c8 # v2.3.0
name: Checkout
uses: actions/checkout@v4
-
name: Set up Docker
uses: ./
with:
version: ${{ env.DOCKER_VERSION }}
rootless: true
-
name: List contexts
run: |
docker context ls

tcp:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- ubuntu-24.04-arm
#- macos-14 # no virt: https://github.com/docker/actions-toolkit/issues/317
- macos-13
- windows-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Set up Docker
id: setup_docker
uses: ./
with:
version: ${{ env.DOCKER_VERSION }}
tcp-port: 2378
-
name: Check docker info through TCP
run: |
docker info
env:
DOCKER_HOST: ${{ steps.setup_docker.outputs.tcp }}
7 changes: 2 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,14 @@ jobs:
with:
egress-policy: audit

-
name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
-
name: Test
uses: docker/bake-action@f6acc70fe0da9b200315017ca49a08c0de03aa0b # v5.1.0
uses: docker/bake-action@v6
with:
targets: test
-
name: Upload coverage
uses: codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # v4.5.0
with:
file: ./coverage/clover.xml
files: ./coverage/clover.xml
token: ${{ secrets.CODECOV_TOKEN }}
16 changes: 7 additions & 9 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
prepare:
runs-on: ubuntu-latest
outputs:
targets: ${{ steps.targets.outputs.matrix }}
targets: ${{ steps.generate.outputs.targets }}
steps:
- name: Harden Runner
uses: step-security/harden-runner@17d0e2bd7d51742c71671bd19fa12bdc9d40a3d6 # v2.8.1
Expand All @@ -26,10 +26,11 @@ jobs:
name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
-
name: Targets matrix
id: targets
run: |
echo "matrix=$(docker buildx bake validate --print | jq -cr '.group.validate.targets')" >> $GITHUB_OUTPUT
name: List targets
id: generate
uses: docker/bake-action/subaction/list-targets@v6
with:
target: validate

validate:
runs-on: ubuntu-latest
Expand All @@ -45,11 +46,8 @@ jobs:
with:
egress-policy: audit

-
name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
-
name: Validate
uses: docker/bake-action@f6acc70fe0da9b200315017ca49a08c0de03aa0b # v5.1.0
uses: docker/bake-action@v6
with:
targets: ${{ matrix.target }}
Loading
Loading