Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update action name #250

Merged
merged 1 commit into from Dec 19, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/appengine-deploy-it.yml
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
- uses: google-github-actions/setup-gcloud@master
with:
service_account_key: ${{ secrets.APPENGINE_DEPLOY_SA_KEY_JSON }}
export_default_credentials: true
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy-cf-it.yml
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master # Set up ADC for credentials
- uses: google-github-actions/setup-gcloud@master # Set up ADC for credentials
with:
service_account_email: ${{ secrets.DEPLOY_CF_SA_EMAIL }}
service_account_key: ${{ secrets.DEPLOY_CF_SA_KEY_JSON }}
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
node-version: 12.x
- run: npm install
working-directory: ./deploy-cloud-functions
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master # Set up ADC to make authenticated request to service
- uses: google-github-actions/setup-gcloud@master # Set up ADC to make authenticated request to service
with:
service_account_email: ${{ secrets.DEPLOY_CF_SA_EMAIL }}
service_account_key: ${{ secrets.DEPLOY_CF_SA_KEY_JSON }}
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
node-version: 12.x
- run: npm install
working-directory: ./deploy-cloud-functions
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master # Set up ADC to make authenticated request to service
- uses: google-github-actions/setup-gcloud@master # Set up ADC to make authenticated request to service
with:
service_account_email: ${{ secrets.DEPLOY_CF_SA_EMAIL }}
service_account_key: ${{ secrets.DEPLOY_CF_SA_KEY_JSON }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-cf-unit.yml
Expand Up @@ -32,7 +32,7 @@ jobs:
run: npm run lint
working-directory: ./deploy-cloud-functions

- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
- uses: google-github-actions/setup-gcloud@master
with:
service_account_email: ${{ secrets.DEPLOY_CF_SA_EMAIL }}
service_account_key: ${{ secrets.DEPLOY_CF_SA_KEY_B64 }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/deploy-cloudrun-credentials-it.yml
Expand Up @@ -14,7 +14,7 @@ jobs:
- id: service
run: echo ::set-output name=service::run-gcloud-$GITHUB_SHA
- uses: actions/checkout@v2
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master # Set up ADC to make authenticated request to service
- uses: google-github-actions/setup-gcloud@master # Set up ADC to make authenticated request to service
with:
service_account_key: ${{ secrets.DEPLOY_CLOUDRUN_SA_KEY_B64 }}
export_default_credentials: true
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
node-version: 12.x
- run: npm install
working-directory: ./deploy-cloudrun
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master # Set up ADC to make authenticated request to service
- uses: google-github-actions/setup-gcloud@master # Set up ADC to make authenticated request to service
with:
service_account_key: ${{ secrets.DEPLOY_CLOUDRUN_SA_KEY_B64 }}
export_default_credentials: true
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
node-version: 12.x
- run: npm install
working-directory: ./deploy-cloudrun
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master # Set up ADC to make authenticated request to service
- uses: google-github-actions/setup-gcloud@master # Set up ADC to make authenticated request to service
with:
service_account_key: ${{ secrets.DEPLOY_CLOUDRUN_SA_KEY_B64 }}
export_default_credentials: true
Expand All @@ -95,7 +95,7 @@ jobs:
runs-on: ubuntu-latest
needs: [json, gcloud, b64_json]
steps:
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
- uses: google-github-actions/setup-gcloud@master
with:
service_account_key: ${{ secrets.DEPLOY_CLOUDRUN_SA_KEY_B64 }}
project_id: ${{ secrets.DEPLOY_CLOUDRUN_PROJECT_ID }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/deploy-cloudrun-it.yml
Expand Up @@ -31,7 +31,7 @@ jobs:
service: ${{ steps.service.outputs.service }}
env_vars: TEST_ENV=TEST_VAR
- name: Setup Authentication with gcloud
uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
uses: google-github-actions/setup-gcloud@master
with:
service_account_key: ${{ secrets.DEPLOY_CLOUDRUN_SA_KEY_B64 }}
export_default_credentials: true
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
service: ${{ steps.service.outputs.service }}
metadata: ./deploy-cloudrun/tests/unit/service.basic.yaml
- name: Setup Authentication with gcloud
uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
uses: google-github-actions/setup-gcloud@master
with:
service_account_key: ${{ secrets.DEPLOY_CLOUDRUN_SA_KEY_B64 }}
export_default_credentials: true
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
service: ${{ steps.service.outputs.service }}
metadata: ./deploy-cloudrun/tests/unit/service.full.yaml
- name: Setup Authentication with gcloud
uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
uses: google-github-actions/setup-gcloud@master
with:
service_account_key: ${{ secrets.DEPLOY_CLOUDRUN_SA_KEY_B64 }}
export_default_credentials: true
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:
runs-on: ubuntu-latest
needs: [envvars, metadata, yaml]
steps:
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
- uses: google-github-actions/setup-gcloud@master
with:
service_account_key: ${{ secrets.DEPLOY_CLOUDRUN_SA_KEY_B64 }}
project_id: ${{ secrets.DEPLOY_CLOUDRUN_PROJECT_ID }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-cloudrun.yml
Expand Up @@ -32,7 +32,7 @@ jobs:
run: npm run lint
working-directory: ./deploy-cloudrun

- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
- uses: google-github-actions/setup-gcloud@master
with:
service_account_key: ${{ secrets.DEPLOY_CLOUDRUN_SA_KEY_B64 }}
export_default_credentials: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/get-gke-credentials-it.yml
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master # Set up ADC for credentials
- uses: google-github-actions/setup-gcloud@master # Set up ADC for credentials
with:
service_account_key: ${{ secrets.GET_GKE_CRED_SA_KEY_JSON }}
export_default_credentials: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/get-gke-credentials-unit.yml
Expand Up @@ -32,7 +32,7 @@ jobs:
run: npm run lint
working-directory: ./get-gke-credentials

- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
- uses: google-github-actions/setup-gcloud@master
with:
service_account_key: ${{ secrets.GET_GKE_CRED_SA_KEY_JSON }}
export_default_credentials: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/get-secretmanager-secrets-it.yml
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
- uses: google-github-actions/setup-gcloud@master
with:
service_account_key: ${{ secrets.GET_SECRETMANAGER_SECRETS_SA_KEY_B64 }}
export_default_credentials: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/upload-cloud-storage-it.yml
Expand Up @@ -18,7 +18,7 @@ jobs:
run: |-
npm install
npm run build
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
- uses: google-github-actions/setup-gcloud@master
with:
service_account_email: ${{ secrets.UPLOAD_CLOUD_STORAGE_GCP_SA_EMAIL }}
service_account_key: ${{ secrets.UPLOAD_CLOUD_STORAGE_GCP_SA_KEY_B64 }}
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
- uses: google-github-actions/setup-gcloud@master
with:
service_account_email: ${{ secrets.UPLOAD_CLOUD_STORAGE_GCP_SA_EMAIL }}
service_account_key: ${{ secrets.UPLOAD_CLOUD_STORAGE_GCP_SA_KEY_B64 }}
Expand Down
2 changes: 1 addition & 1 deletion appengine-deploy/README.md
Expand Up @@ -103,7 +103,7 @@ You can provide credentials using the [setup-gcloud][setup-gcloud] action,
however you must provide your Project ID to the `appengine-deploy` action:

```yaml
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
- uses: google-github-actions/setup-gcloud@master
with:
version: '290.0.1'
service_account_key: ${{ secrets.GCP_SA_KEY }}
Expand Down
4 changes: 2 additions & 2 deletions deploy-cloud-functions/README.md
Expand Up @@ -60,7 +60,7 @@ steps:

- `runtime`: (Required) Runtime to use for the function. Possible options documented [here][runtimes].

- `entry_point`: (Optional) Name of a function (as defined in source code) that will be executed. Defaults to the resource name suffix, if not specified.
- `entry_point`: (Optional) Name of a function (as defined in source code) that will be executed. Defaults to the resource name suffix, if not specified.

- `region`: (Optional) Region in which the function should be deployed. Defaults to `us-central1`.

Expand Down Expand Up @@ -125,7 +125,7 @@ one of the methods found in [Configuring Ownership and access to a service accou
You can provide credentials using the [setup-gcloud][setup-gcloud] action:

```yaml
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
- uses: google-github-actions/setup-gcloud@master
with:
service_account_key: ${{ secrets.GCP_SA_KEY }}
export_default_credentials: true
Expand Down
4 changes: 2 additions & 2 deletions deploy-cloudrun/README.md
Expand Up @@ -73,7 +73,7 @@ steps:
KEY1=VALUE1,KEY2=VALUE2. **All existing environment variables will be retained**.

- `metadata`: YAML serivce description for the Cloud Run service. See
[Metadata customizations](#metadata-customizations) for more information.
[Metadata customizations](#metadata-customizations) for more information.
**Existing configuration will be retained besides container entrypoint and arguments**.

- `project_id`: (Optional) ID of the Google Cloud project. If provided, this
Expand Down Expand Up @@ -139,7 +139,7 @@ one of the methods found in [Configuring Ownership and access to a service accou
You can provide credentials using the [setup-gcloud][setup-gcloud] action:

```yaml
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
- uses: google-github-actions/setup-gcloud@master
with:
version: '290.0.1'
service_account_key: ${{ secrets.GCP_SA_KEY }}
Expand Down
Expand Up @@ -33,7 +33,7 @@ jobs:
uses: actions/checkout@v2

# Setup gcloud CLI
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
- uses: google-github-actions/setup-gcloud@master
with:
version: '286.0.0'
service_account_email: ${{ secrets.RUN_SA_EMAIL }}
Expand Down
Expand Up @@ -34,7 +34,7 @@ jobs:
uses: actions/checkout@v2

# Setup gcloud CLI
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
- uses: google-github-actions/setup-gcloud@master
with:
version: '290.0.1'
service_account_key: ${{ secrets.RUN_SA_KEY }}
Expand Down
2 changes: 1 addition & 1 deletion example-workflows/gae/.github/workflows/app-engine.yml
Expand Up @@ -29,7 +29,7 @@ jobs:
uses: actions/checkout@v2

# Setup and configure gcloud CLI
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
- uses: google-github-actions/setup-gcloud@master
with:
version: '290.0.1'
project_id: ${{ secrets.PROJECT_ID }}
Expand Down
2 changes: 1 addition & 1 deletion example-workflows/gce/.github/workflows/gce.yaml
Expand Up @@ -34,7 +34,7 @@ jobs:
uses: actions/checkout@v2

# Setup gcloud CLI
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
- uses: google-github-actions/setup-gcloud@master
with:
version: '290.0.1'
service_account_key: ${{ secrets.GCE_SA_KEY }}
Expand Down
2 changes: 1 addition & 1 deletion example-workflows/gke/.github/workflows/gke.yml
Expand Up @@ -36,7 +36,7 @@ jobs:
uses: actions/checkout@v2

# Setup gcloud CLI
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
- uses: google-github-actions/setup-gcloud@master
with:
version: '290.0.1'
service_account_key: ${{ secrets.GKE_SA_KEY }}
Expand Down
2 changes: 1 addition & 1 deletion get-secretmanager-secrets/README.md
Expand Up @@ -134,7 +134,7 @@ permissions to access the secrets being requested.
You can provide credentials using the [setup-gcloud][setup-gcloud] action:

```yaml
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
- uses: google-github-actions/setup-gcloud@master
with:
export_default_credentials: true
- uses: GoogleCloudPlatform/github-actions/get-secretmanager-secrets@master
Expand Down
2 changes: 1 addition & 1 deletion setup-gcloud/README.md
Expand Up @@ -68,7 +68,7 @@ It does the following:
```yaml
steps:
- uses: actions/checkout@v2
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
- uses: google-github-actions/setup-gcloud@master
with:
version: '290.0.1'
project_id: ${{ secrets.GCP_PROJECT_ID }}
Expand Down
2 changes: 1 addition & 1 deletion upload-cloud-storage/README.md
Expand Up @@ -157,7 +157,7 @@ permissions to access the secrets being requested.
You can provide credentials using the [setup-gcloud][setup-gcloud] action:

```yaml
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
- uses: google-github-actions/setup-gcloud@master
with:
service_account_key: ${{ secrets.GCP_SA_KEY }}
export_default_credentials: true
Expand Down