Skip to content

Commit

Permalink
chore: Update Node.js and Java versions in CI workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
cheleb committed May 18, 2024
1 parent 112f165 commit ba82cf8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,19 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 19
node-version: 20
- name: Install dependencies
run: |
cd examples/client
npm install
- name: Setup JVM
uses: actions/setup-java@v4
with:
java-version: "19"
java-version: "22"
distribution: "zulu"
# - name: Tests
# run: sbt +test
- name: server/dist
- name: DEV=prod server/dist
run: sbt server/dist
env:
NODE_OPTIONS: "--openssl-legacy-provider"
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 19
node-version: 20
- name: Setup JVM
uses: actions/setup-java@v4
with:
java-version: "19"
java-version: "22"
distribution: "zulu"
# - name: Tests
# run: sbt +test
- name: Release
run: sbt ci-release
run: DEV=prod sbt ci-release
env:
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
PGP_SECRET: ${{ secrets.PGP_SECRET }}
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ target/
node_modules/
dist/
*.bak
version.sbt
1 change: 0 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,6 @@ lazy val server = project
scalaJSProjects := Seq(example),
Assets / pipelineStages := Seq(scalaJSPipeline),
libraryDependencies ++= Seq(
"dev.zio" %% "zio-http" % "3.0.0-RC6",
"io.github.iltotore" %% "iron-zio-json" % "2.5.0",
"com.softwaremill.sttp.tapir" %% "tapir-zio" % tapirVersion,
"com.softwaremill.sttp.tapir" %% "tapir-zio-http-server" % tapirVersion,
Expand Down

0 comments on commit ba82cf8

Please sign in to comment.