Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
steps:
- uses: 'actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683' # ratchet:actions/checkout@v4

- uses: 'google-github-actions/auth@v2' # ratchet:exclude
- uses: 'google-github-actions/auth@v3' # ratchet:exclude
with:
workload_identity_provider: '${{ vars.WIF_PROVIDER_NAME }}'

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

steps:
- id: 'auth'
uses: 'google-github-actions/auth@v2'
uses: 'google-github-actions/auth@v3'
with:
workload_identity_provider: 'projects/123456789/locations/global/workloadIdentityPools/my-pool/providers/my-provider'

Expand All @@ -39,7 +39,7 @@ jobs:
namespace: 'my-namespace'
expose: '8000'
k8s_manifests: 'configs'

- name: 'get-deployments'
shell: bash
run: |
Expand All @@ -61,7 +61,7 @@ jobs:
- `project_id` - (Required) Project ID where the cluster is deployed.

- `namespace` - (Optional) Namespace of GKE cluster to deploy to.
If not provided, it will not be passed to the binary.
If not provided, it will not be passed to the binary.

- `expose` - (Optional) The port provided will be used to expose the deployed
workload object (i.e., port and targetPort will be set to the value provided
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"name": "deploy-gke",
"version": "0.0.4",
"engines": {
"node": "20.x",
"npm": "10.x"
"node": ">= 24.x",
"npm": ">= 11.x"
},
"scripts": {
"build": "exit 0"
Expand Down
Loading