From 209dc6716dbe0ef7058cffc3eb5b8077d69f8968 Mon Sep 17 00:00:00 2001 From: Yash Sethiya Date: Wed, 20 Mar 2024 16:19:02 +0530 Subject: [PATCH] Docker buildx with k8s without specifying endpoint argument Signed-off-by: Yash Sethiya --- .github/workflows/release-process.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release-process.yml b/.github/workflows/release-process.yml index f9a943e77..b34606343 100644 --- a/.github/workflows/release-process.yml +++ b/.github/workflows/release-process.yml @@ -16,7 +16,7 @@ jobs: id-token: write steps: - name: Check out code - uses: actions/checkout@v3.5.2 + uses: actions/checkout@v4 with: fetch-depth: 0 @@ -24,13 +24,13 @@ jobs: run: ./hack/install-deps.sh - name: Install imgpkg - uses: carvel-dev/setup-action@v1 + uses: carvel-dev/setup-action@v2 with: only: imgpkg token: ${{ secrets.GITHUB_TOKEN }} - name: Login to GitHub Container Registry - uses: docker/login-action@v3 + uses: docker/login-action@v3.1.0 with: registry: ghcr.io username: ${{ github.actor }} @@ -42,13 +42,13 @@ jobs: go-version: 1.21.6 - name: Set up Cosign - uses: sigstore/cosign-installer@v3 + uses: sigstore/cosign-installer@v3.4.0 - name: Run release script run: | set -e -x minikube start --driver=docker --wait=all - docker buildx create minikube --use --driver=kubernetes --bootstrap + docker buildx create --name minikube --use --driver=kubernetes --bootstrap ./hack/build-release.sh # Create release folder to store all the output artifacts mkdir release @@ -220,7 +220,7 @@ jobs: --certificate-oidc-issuer=https://token.actions.githubusercontent.com ./tmp/checksums.txt - name: Create release draft and upload release yaml - uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 + uses: softprops/action-gh-release@v2.0.2 with: name: ${{ github.ref_name }} token: ${{ secrets.GITHUB_TOKEN }} @@ -232,7 +232,7 @@ jobs: prerelease: true - name: Get uploaded release YAML checksum - uses: actions/github-script@v6 + uses: actions/github-script@v7.0.1 id: get-checksums-from-draft-release if: startsWith(github.ref, 'refs/tags/') with: