From e2af8f3781dd7eca4984e6ff2c3dc12c30b3d11d Mon Sep 17 00:00:00 2001 From: Ren Adachi <49895682+moeyashi@users.noreply.github.com> Date: Sat, 26 Oct 2024 19:39:47 +0900 Subject: [PATCH] doc(README.md): v8 to v9 --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 375ba02..aff9626 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ jobs: targets: wasm32-wasi # WebAssembly target - name: Deploy to Compute - uses: fastly/compute-actions@v8 + uses: fastly/compute-actions@v9 env: FASTLY_API_TOKEN: ${{ secrets.FASTLY_API_TOKEN }} ``` @@ -53,7 +53,7 @@ jobs: run: npm install - name: Deploy to Compute - uses: fastly/compute-actions@v8 + uses: fastly/compute-actions@v9 env: FASTLY_API_TOKEN: ${{ secrets.FASTLY_API_TOKEN }} ``` @@ -82,7 +82,7 @@ jobs: - uses: actions/checkout@v3 - name: Set up Fastly CLI - uses: fastly/compute-actions/setup@v8 + uses: fastly/compute-actions/setup@v9 with: cli_version: '1.0.0' # optional, defaults to 'latest' token: ${{ secrets.GITHUB_TOKEN }} @@ -91,12 +91,12 @@ jobs: run: npm install - name: Build Compute Package - uses: fastly/compute-actions/build@v8 + uses: fastly/compute-actions/build@v9 with: verbose: true # optionally enables verbose output, defaults to false - name: Deploy Compute Package - uses: fastly/compute-actions/deploy@v8 + uses: fastly/compute-actions/deploy@v9 with: service_id: '4tYGx...' # optional, defaults to value in fastly.toml comment: 'Deployed via GitHub Actions' # optional @@ -121,7 +121,7 @@ jobs: shell: bash steps: - uses: actions/checkout@v4 - - uses: fastly/compute-actions/preview@v8 + - uses: fastly/compute-actions/preview@v9 with: fastly-api-token: ${{ secrets.FASTLY_API_KEY }} github-token: ${{ secrets.GITHUB_TOKEN }}