From cb6229fde38dfdc402c0fcadeb576adabd072b03 Mon Sep 17 00:00:00 2001 From: Renovate Date: Wed, 19 Mar 2025 19:03:45 +0000 Subject: [PATCH 1/3] chore(deps): update actions/cache digest to 5a3ec84 --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index b4aaa5c..2360c16 100644 --- a/action.yml +++ b/action.yml @@ -40,7 +40,7 @@ runs: password: ${{ inputs.DOCKER_PASSWORD }} - name: Cache Docker layers - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 + uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-${{ inputs.name }}-${{ github.sha }} From 64b708adcad66f1a25a7ccb00684c4e378074df6 Mon Sep 17 00:00:00 2001 From: jank Date: Sun, 1 Jun 2025 15:45:17 +0200 Subject: [PATCH 2/3] fix: Add Readme --- README.md | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..6baf059 --- /dev/null +++ b/README.md @@ -0,0 +1,59 @@ +## Docker build + +### Description + +Builds a docker image + +### Inputs + +| name | description | required | default | +| --- | --- | --- | --- | +| `name` |

Directory name

| `true` | `""` | +| `REGISTRY_USERNAME` |

Registry username

| `true` | `""` | +| `REGISTRY_TOKEN` |

Registry token

| `true` | `""` | +| `DOCKER_USERNAME` |

Docker username

| `true` | `""` | +| `DOCKER_PASSWORD` |

Docker password

| `true` | `""` | + + +### Runs + +This action is a `composite` action. + +### Usage + +```yaml +- uses: ***PROJECT***@***VERSION*** + with: + name: + # Directory name + # + # Required: true + # Default: "" + + REGISTRY_USERNAME: + # Registry username + # + # Required: true + # Default: "" + + REGISTRY_TOKEN: + # Registry token + # + # Required: true + # Default: "" + + DOCKER_USERNAME: + # Docker username + # + # Required: true + # Default: "" + + DOCKER_PASSWORD: + # Docker password + # + # Required: true + # Default: "" +``` + + + From 29f3fb77e68591ee1e5c79fe6b6e16f127da0ea7 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sun, 1 Jun 2025 14:02:15 +0000 Subject: [PATCH 3/3] chore(deps): update actions/cache digest to 5a3ec84 --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index b4aaa5c..2360c16 100644 --- a/action.yml +++ b/action.yml @@ -40,7 +40,7 @@ runs: password: ${{ inputs.DOCKER_PASSWORD }} - name: Cache Docker layers - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 + uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-${{ inputs.name }}-${{ github.sha }}