Skip to content

Commit

Permalink
ci: Update appengine runtime for Windows package deployment (#55)
Browse files Browse the repository at this point in the history
Node16 is no longer supported. The latest is node22, supported until
2027. See
https://cloud.google.com/appengine/docs/standard/lifecycle/support-schedule#nodejs
  • Loading branch information
joeyparrish authored Jun 6, 2024
1 parent 6e2bda6 commit 88f3484
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -159,14 +159,14 @@ jobs:
"start": "express-chocolatey-server *.nupkg"
},
"engines": {
"node": "16.x.x"
"node": "22.x.x"
}
}
EOF
# Create the app.yaml definition for App Engine.
cat >app.yaml <<EOF
runtime: nodejs16
runtime: nodejs22
handlers:
- url: /.*
secure: always
Expand Down

0 comments on commit 88f3484

Please sign in to comment.