Skip to content

Commit

Permalink
Update Node and Mongo versions in GitHub Actions
Browse files Browse the repository at this point in the history
This updates to Node v22 and Mongo v7.0
  • Loading branch information
NicMcPhee committed Sep 23, 2024
1 parent e0256ad commit d484e23
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/client.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Use Node.js 18
- name: Use Node.js 22
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 22
cache: 'npm'
cache-dependency-path: ./client/package-lock.json

Expand All @@ -34,10 +34,10 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Use Node.js 18
- name: Use Node.js 22
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 22
cache: 'npm'
cache-dependency-path: ./client/package-lock.json

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

services:
mongo:
image: mongo:4.2
image: mongo:7.0
ports:
- '27017-27019:27017-27019'

Expand All @@ -27,10 +27,10 @@ jobs:
restore-keys: |
${{ runner.os }}-gradle-
- name: Use Node.js 18
- name: Use Node.js 22
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 22
cache: 'npm'
cache-dependency-path: ./client/package-lock.json

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

services:
mongo:
image: mongo:4.2
image: mongo:7.0
ports:
- '27017-27019:27017-27019'

Expand Down

0 comments on commit d484e23

Please sign in to comment.