From 6dbf4e537f7ee15f3fcb779f1e3e3187c11541dc Mon Sep 17 00:00:00 2001 From: Nozomu Ohki <38576286+ohkinozomu@users.noreply.github.com> Date: Tue, 30 Nov 2021 08:52:40 +0900 Subject: [PATCH] chore: Replace backticks with single quotes in README (#65) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c524165..02a4ba2 100644 --- a/README.md +++ b/README.md @@ -199,7 +199,7 @@ jobs: steps: - id: 'auth' name: 'Authenticate to Google Cloud' - uses: `google-github-actions/auth@v0.4.1' + uses: 'google-github-actions/auth@v0.4.1' with: workload_identity_provider: 'projects/123456789/locations/global/workloadIdentityPools/my-pool/providers/my-provider' service_account: 'my-service-account@my-project.iam.gserviceaccount.com' @@ -225,7 +225,7 @@ jobs: steps: - id: 'auth' name: 'Authenticate to Google Cloud' - uses: `google-github-actions/auth@v0.4.1' + uses: 'google-github-actions/auth@v0.4.1' with: credentials_json: '${{ secrets.GOOGLE_CREDENTIALS }}' ```