From 101a2146104a5281861c8878a62d43bf77fd540e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 30 Sep 2024 16:17:59 +0000 Subject: [PATCH] chore(deps): update mathiasvr/command-output action to v2 --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3e2858a..fe04f09 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,7 +23,7 @@ jobs: - uses: ./.github/actions/pnpm - run: pnpm build --preset=cloudflare_pages - name: Deploy preview build to Cloudflare Pages - uses: mathiasvr/command-output@v1.1.0 + uses: mathiasvr/command-output@v2.0.0 id: cloudflare with: run: npx wrangler pages deploy --project-name storacha-website-staging --branch "$GITHUB_REF_NAME" --commit-hash "$GITHUB_SHA" ${{ env.outputDir }} @@ -31,7 +31,7 @@ jobs: CLOUDFLARE_API_TOKEN: ${{ secrets.CF_TOKEN }} CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CF_ACCOUNT_ID }} - name: Find Cloudflare Pages preview URL - uses: mathiasvr/command-output@v1.1.0 + uses: mathiasvr/command-output@v2.0.0 id: cloudflare_url with: run: egrep -o 'https?://[^ ]+' <(echo "${{ steps.cloudflare.outputs.stdout }}") @@ -66,7 +66,7 @@ jobs: - uses: ./.github/actions/pnpm - run: pnpm build --preset=cloudflare_pages - name: Deploy build to Cloudflare Pages - uses: mathiasvr/command-output@v1.1.0 + uses: mathiasvr/command-output@v2.0.0 id: cloudflare with: run: npx wrangler pages deploy --project-name storacha-website --branch "main" --commit-hash "$GITHUB_SHA" ${{ env.outputDir }} @@ -74,7 +74,7 @@ jobs: CLOUDFLARE_API_TOKEN: ${{ secrets.CF_TOKEN }} CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CF_ACCOUNT_ID }} - name: Find Cloudflare Pages preview URL - uses: mathiasvr/command-output@v1.1.0 + uses: mathiasvr/command-output@v2.0.0 id: cloudflare_url with: run: egrep -o 'https?://[^ ]+' <(echo "${{ steps.cloudflare.outputs.stdout }}")