Skip to content

Commit

Permalink
fix(?) the syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
evanchooly committed Apr 30, 2023
1 parent 9ebcd2e commit a61f27b
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:

env:
LATEST_DRIVER: 4.9.1

jobs:
Build:
uses: evanchooly/workflows/.github/workflows/build.yml@master
Expand All @@ -25,20 +26,20 @@ jobs:
matrix:
java: [ 20, 11 ]
mongo: [ 6 ]
driver: [ $LATEST_DRIVER, 4.8.1, 4.7.2, 4.6.1 ]
driver: [ ${{ env.LATEST_DRIVER }}, 4.8.1, 4.7.2, 4.6.1 ]
include:
- java: 11
mongo: 5
driver: $LATEST_DRIVER
driver: ${{ env.LATEST_DRIVER }}
- java: 11
mongo: 4.4
driver: $LATEST_DRIVER
driver: ${{ env.LATEST_DRIVER }}
- java: 11
mongo: 4.2
driver: $LATEST_DRIVER
driver: ${{ env.LATEST_DRIVER }}
- java: 11
mongo: 4.0
driver: $LATEST_DRIVER
driver: ${{ env.LATEST_DRIVER }}

uses: evanchooly/workflows/.github/workflows/build.yml@master
secrets:
Expand Down

0 comments on commit a61f27b

Please sign in to comment.