|
12 | 12 | name: with setup-gcloud
|
13 | 13 | runs-on: ubuntu-latest
|
14 | 14 | steps:
|
15 |
| - - uses: actions/checkout@v2 |
| 15 | + - uses: actions/checkout@v3 |
16 | 16 | - uses: google-github-actions/setup-gcloud@master
|
17 | 17 | with:
|
18 | 18 | project_id: ${{ secrets.APPENGINE_DEPLOY_PROJECT_ID }}
|
|
59 | 59 | name: with setup-gcloud - no project Id
|
60 | 60 | runs-on: ubuntu-latest
|
61 | 61 | steps:
|
62 |
| - - uses: actions/checkout@v2 |
| 62 | + - uses: actions/checkout@v3 |
63 | 63 | - uses: google-github-actions/setup-gcloud@master
|
64 | 64 | with:
|
65 | 65 | service_account_key: ${{ secrets.APPENGINE_DEPLOY_SA_KEY_JSON }}
|
@@ -106,7 +106,7 @@ jobs:
|
106 | 106 | name: with base64 json creds
|
107 | 107 | runs-on: ubuntu-latest
|
108 | 108 | steps:
|
109 |
| - - uses: actions/checkout@v2 |
| 109 | + - uses: actions/checkout@v3 |
110 | 110 | - name: Update app.yaml
|
111 | 111 | run: |-
|
112 | 112 | echo "service: ${{ github.job }}-${{ github.run_number }}" >> ${{ github.workspace }}/example-app/app.yaml
|
@@ -148,7 +148,7 @@ jobs:
|
148 | 148 | name: with json creds
|
149 | 149 | runs-on: ubuntu-latest
|
150 | 150 | steps:
|
151 |
| - - uses: actions/checkout@v2 |
| 151 | + - uses: actions/checkout@v3 |
152 | 152 | - name: Update app.yaml
|
153 | 153 | run: |-
|
154 | 154 | echo "service: ${{ github.job }}-${{ github.run_number }}" >> ${{ github.workspace }}/example-app/app.yaml
|
@@ -195,15 +195,15 @@ jobs:
|
195 | 195 | id-token: 'write'
|
196 | 196 |
|
197 | 197 | steps:
|
198 |
| - - uses: actions/checkout@v2 |
| 198 | + - uses: actions/checkout@v3 |
199 | 199 |
|
200 | 200 | - name: Update app.yaml
|
201 | 201 | run: |-
|
202 | 202 | echo "service: ${{ github.job }}-${{ github.run_number }}" >> ${{ github.workspace }}/example-app/app.yaml
|
203 | 203 |
|
204 |
| - - uses: 'actions/setup-node@v2' |
| 204 | + - uses: 'actions/setup-node@v3' |
205 | 205 | with:
|
206 |
| - node-version: '12.x' |
| 206 | + node-version: '16.x' |
207 | 207 |
|
208 | 208 | - id: build
|
209 | 209 | name: Build dist
|
|
0 commit comments