Skip to content

Commit f7ef7a7

Browse files
authored
Use node 20 in gh workflows (#22)
1 parent b66e067 commit f7ef7a7

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/gitpod-web-docker.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,21 @@ jobs:
66
build:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v3
9+
- uses: actions/checkout@v4
1010
- name: Auth Google Cloud SDK
11-
uses: google-github-actions/auth@v0
11+
uses: google-github-actions/auth@v2
1212
with:
1313
credentials_json: ${{ secrets.GCP_SA_KEY }}
1414
- name: Set up Google Cloud SDK
15-
uses: google-github-actions/setup-gcloud@v0
15+
uses: google-github-actions/setup-gcloud@v2
1616
with:
1717
project_id: ${{ secrets.GCP_PROJECT_ID }}
1818
- name: Set up Docker
1919
run: |
2020
gcloud auth configure-docker --quiet
21-
- uses: actions/setup-node@v3
21+
- uses: actions/setup-node@v4
2222
with:
23-
node-version: 18
23+
node-version: 20
2424
cache: 'yarn'
2525
cache-dependency-path: '**/yarn.lock'
2626

@@ -43,7 +43,7 @@ jobs:
4343
yarn --cwd gitpod-web/ inject-commit-hash
4444
4545
- name: Docker build and push
46-
uses: docker/build-push-action@v3
46+
uses: docker/build-push-action@v6
4747
with:
4848
push: true
4949
context: gitpod-web

.github/workflows/release-gitpod-remote.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ jobs:
77
release:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v3
10+
- uses: actions/checkout@v4
1111

12-
- uses: actions/setup-node@v3
12+
- uses: actions/setup-node@v4
1313
with:
14-
node-version: 18
14+
node-version: 20
1515

1616
- name: Install dependencies
1717
run: |

0 commit comments

Comments
 (0)