Skip to content

Commit 28ddb50

Browse files
authored
Merge pull request #17 from mongoosejs/codex/upgrade-github-actions-to-ubuntu-24
Update workflow to Ubuntu 24
2 parents 9111bc3 + e1a42fe commit 28ddb50

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
node: [20]
12-
os: [ubuntu-20.04]
12+
os: [ubuntu-24.04]
1313
include:
14-
- os: ubuntu-20.04
15-
mongo-os: ubuntu2004
16-
mongo: 5.0.2
14+
- os: ubuntu-24.04
15+
mongo-os: ubuntu2404
16+
mongo: 8.0.7
1717
name: Node ${{ matrix.node }} MongoDB ${{ matrix.mongo }}
1818
steps:
1919
- uses: actions/checkout@v2
@@ -33,7 +33,7 @@ jobs:
3333
printf "\n--timeout 8000" >> ./test/mocha.opts
3434
./mongodb-linux-x86_64-${{ matrix.mongo-os }}-${{ matrix.mongo }}/bin/mongod --fork --dbpath ./data/db/27017 --syslog --port 27017
3535
sleep 2
36-
mongod --version
36+
./mongodb-linux-x86_64-${{ matrix.mongo-os }}-${{ matrix.mongo }}/bin/mongod --version
3737
echo `pwd`/mongodb-linux-x86_64-${{ matrix.mongo-os }}-${{ matrix.mongo }}/bin >> $GITHUB_PATH
3838
3939
- run: npm test

0 commit comments

Comments
 (0)