From 59acb6260d9c0ba8f4a2f9d9b48431a222b68e20 Mon Sep 17 00:00:00 2001 From: Bob Callaway Date: Wed, 10 Apr 2024 19:07:43 -0400 Subject: [PATCH] bump default version to v2.2.4, prep for v3.5.0 release (#159) Signed-off-by: Bob Callaway --- .github/workflows/test-action.yml | 2 +- README.md | 14 +++++++------- action.yml | 16 ++++++++-------- 3 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/test-action.yml b/.github/workflows/test-action.yml index dcb6527..5f4a02e 100644 --- a/.github/workflows/test-action.yml +++ b/.github/workflows/test-action.yml @@ -65,7 +65,7 @@ jobs: - name: Install Cosign uses: ./ with: - cosign-release: 'v2.2.0' + cosign-release: 'v2.2.3' - name: Check install! run: cosign version - name: Check root directory diff --git a/README.md b/README.md index 7d6d9f7..5686be9 100644 --- a/README.md +++ b/README.md @@ -13,9 +13,9 @@ This action currently supports GitHub-provided Linux, macOS and Windows runners Add the following entry to your Github workflow YAML file: ```yaml -uses: sigstore/cosign-installer@v3.3.0 +uses: sigstore/cosign-installer@v3.5.0 with: - cosign-release: 'v2.2.2' # optional + cosign-release: 'v2.2.4' # optional ``` Example using a pinned version: @@ -30,9 +30,9 @@ jobs: name: Install Cosign steps: - name: Install Cosign - uses: sigstore/cosign-installer@v3.3.0 + uses: sigstore/cosign-installer@v3.5.0 with: - cosign-release: 'v2.2.2' + cosign-release: 'v2.2.4' - name: Check install! run: cosign version ``` @@ -49,7 +49,7 @@ jobs: name: Install Cosign steps: - name: Install Cosign - uses: sigstore/cosign-installer@v3.3.0 + uses: sigstore/cosign-installer@v3.5.0 - name: Check install! run: cosign version ``` @@ -73,7 +73,7 @@ jobs: go-version: '1.21' check-latest: true - name: Install Cosign - uses: sigstore/cosign-installer@v3.3.0 + uses: sigstore/cosign-installer@v3.5.0 with: cosign-release: main - name: Check install! @@ -105,7 +105,7 @@ jobs: fetch-depth: 1 - name: Install Cosign - uses: sigstore/cosign-installer@v3.4.0 + uses: sigstore/cosign-installer@v3.5.0 - name: Set up QEMU uses: docker/setup-qemu-action@v2.1.0 diff --git a/action.yml b/action.yml index 75fff65..6ac9c26 100644 --- a/action.yml +++ b/action.yml @@ -10,7 +10,7 @@ inputs: cosign-release: description: 'cosign release version to be installed' required: false - default: 'v2.2.3' + default: 'v2.2.4' install-dir: description: 'Where to install the cosign binary' required: false @@ -65,13 +65,13 @@ runs: esac } - bootstrap_version='v2.2.3' - bootstrap_linux_amd64_sha='f669f41176cb1d58bb6a3fdb06e24861540cfdb5a571b4ec5eb2218b0df5d304' - bootstrap_linux_arm_sha='cb0ace4af5cf2289dcc61659174f2d5bd0b31a938ebbd3b64b650a4fd9e346bf' - bootstrap_linux_arm64_sha='b088d676f0c0123b8c348e18d421cf966020edc4977a486115a12643dea99a3f' - bootstrap_darwin_amd64_sha='2429f4b027fc311a6324e9db6fb3a937d559dc61de906a1c2d0d1e0671685e4c' - bootstrap_darwin_arm64_sha='3d95ab46d4c4cc55e6465758c238dc03f830cc8a1fc38bc7a33bc203e0fb2c3b' - bootstrap_windows_amd64_sha='f7f272d56c580b0ec96f59bfe9f88ec5f42b6e195df009ce3417428e0e0dead1' + bootstrap_version='v2.2.4' + bootstrap_linux_amd64_sha='97a6a1e15668a75fc4ff7a4dc4cb2f098f929cbea2f12faa9de31db6b42b17d7' + bootstrap_linux_arm_sha='ad0338117c8c97a555e48ee194f400aad56803aaa1f39f537a3ede9261bc9aa7' + bootstrap_linux_arm64_sha='658087351e1d4f9c396b5f59ee5437461c06128f4ce80ba899ccaa1c0b6a8a62' + bootstrap_darwin_amd64_sha='0e5a77a86115e4c00ba4243db01abceacb13cc06981c45e53ee71f2e1db8ce25' + bootstrap_darwin_arm64_sha='fcd310e64ecddc1eaa13fe814ac1c9fc02f6f9eacd9a58480ab8160eb8ca381e' + bootstrap_windows_amd64_sha='9e9b71bd3fa2a6abfa903b5f784d9ca0fbc29c563d2b084c1a82c593c2bab001' cosign_executable_name=cosign trap "popd >/dev/null" EXIT