Skip to content

Commit 8880eb6

Browse files
committed
Bump workflow actions
1 parent db0c6e0 commit 8880eb6

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/deploy-dev-gcp.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
- name: Checkout
1919
uses: actions/checkout@v5
2020
- name: Setup node
21-
uses: actions/setup-node@v4
21+
uses: actions/setup-node@v5
2222
with:
23-
node-version: 22
23+
node-version: 24
2424
cache: npm
2525
registry-url: "https://npm.pkg.github.com"
2626
- name: Install dependencies
@@ -32,10 +32,10 @@ jobs:
3232
- name: Build application
3333
run: npm run build:dev
3434
- name: Authenticate to Google Cloud
35-
uses: google-github-actions/auth@v2
35+
uses: google-github-actions/auth@v3
3636
with:
3737
credentials_json: ${{ secrets.GCS_SA_KEY_DEV }}
3838
- name: Set up Cloud SDK
39-
uses: google-github-actions/setup-gcloud@v2
39+
uses: google-github-actions/setup-gcloud@v3
4040
- name: Upload files to GCS
4141
run: gsutil -m rsync -r dist gs://obo-beslutteroversikt-dev

.github/workflows/deploy-prod-gcp.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
- name: Checkout
1919
uses: actions/checkout@v5
2020
- name: Setup node
21-
uses: actions/setup-node@v4
21+
uses: actions/setup-node@v5
2222
with:
23-
node-version: 22
23+
node-version: 24
2424
cache: npm
2525
registry-url: "https://npm.pkg.github.com"
2626
- name: Install dependencies
@@ -32,10 +32,10 @@ jobs:
3232
- name: Build application
3333
run: npm run build:prod
3434
- name: Authenticate to Google Cloud
35-
uses: google-github-actions/auth@v2
35+
uses: google-github-actions/auth@v3
3636
with:
3737
credentials_json: ${{ secrets.GCS_SA_KEY_PROD }}
3838
- name: Set up Cloud SDK
39-
uses: google-github-actions/setup-gcloud@v2
39+
uses: google-github-actions/setup-gcloud@v3
4040
- name: Upload files to GCS
4141
run: gsutil -m rsync -r dist gs://obo-beslutteroversikt-prod

.github/workflows/update-github-pages.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ jobs:
1919
- name: Checkout
2020
uses: actions/checkout@v5
2121
- name: Setup node
22-
uses: actions/setup-node@v4
22+
uses: actions/setup-node@v5
2323
with:
24-
node-version: 22
24+
node-version: 24
2525
cache: npm
2626
registry-url: "https://npm.pkg.github.com"
2727
- name: Install dependencies

0 commit comments

Comments
 (0)