Skip to content

Commit

Permalink
FIX (GithubActions) @W-15620002@ - Reverted node LTS hardcode. (#1447)
Browse files Browse the repository at this point in the history
  • Loading branch information
jfeingold35 authored and jag-j committed Apr 30, 2024
1 parent 35fb039 commit e2eba1b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/daily-smoke-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ jobs:
smoke-test:
uses: ./.github/workflows/run-tests.yml
with:
node-matrix: "[{version: '20.12.1', artifact: 'lts'}, {version: 'latest', artifact: 'latest'}]"
node-matrix: "[{version: 'lts/*', artifact: 'lts'}, {version: 'latest', artifact: 'latest'}]"
java-matrix: "['11']"
2 changes: 1 addition & 1 deletion .github/workflows/production-heartbeat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fail-fast: false
matrix:
os: [{vm: ubuntu-latest, exe: .sh}, {vm: windows-2019, exe: .cmd}]
node: ['20.12.1']
node: ['lts/*']
runs-on: ${{ matrix.os.vm }}
timeout-minutes: 60
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
description: "An array of node versions against which the tests should be run"
required: false
type: string
default: "[{version: '20.12.1', artifact: 'lts'}]"
default: "[{version: 'lts/*', artifact: 'lts'}]"
java-matrix:
description: "An array of java versions against which the tests should be run"
required: false
Expand Down

0 comments on commit e2eba1b

Please sign in to comment.