From 04c7b671ff7b6cffca332c69c5a258bc3b3b5496 Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Tue, 12 Sep 2023 10:08:58 +0200 Subject: [PATCH] docs: bump actions to latest major Signed-off-by: CrazyMax --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 6e4dcc2..b256494 100644 --- a/README.md +++ b/README.md @@ -35,19 +35,19 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 - name: Login to DockerHub - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Build and push - uses: docker/bake-action@v3 + uses: docker/bake-action@v4 with: push: true ``` @@ -82,7 +82,7 @@ Following inputs can be used as `step.with` keys | `no-cache` | Bool | Do not use cache when building the image (default `false`) | | `pull` | Bool | Always attempt to pull a newer version of the image (default `false`) | | `load` | Bool | Load is a shorthand for `--set=*.output=type=docker` (default `false`) | -| `provenance` | Bool/String | [Provenance](https://docs.docker.com/build/attestations/slsa-provenance/) is a shorthand for `--set=*.attest=type=provenance` | +| `provenance` | Bool/String | [Provenance](https://docs.docker.com/build/attestations/slsa-provenance/) is a shorthand for `--set=*.attest=type=provenance` | | `push` | Bool | Push is a shorthand for `--set=*.output=type=registry` (default `false`) | | `sbom` | Bool/String | [SBOM](https://docs.docker.com/build/attestations/sbom/) is a shorthand for `--set=*.attest=type=sbom` | | `set` | List | List of [targets values to override](https://docs.docker.com/engine/reference/commandline/buildx_bake/#set) (eg: `targetpattern.key=value`) | @@ -90,7 +90,7 @@ Following inputs can be used as `step.with` keys ### outputs -Following outputs are available +The following outputs are available | Name | Type | Description | |------------|------|-----------------------|