Skip to content

Commit

Permalink
Update action versions in remaining workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jgoldfar committed Sep 14, 2023
1 parent 103e77a commit c5509ed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker-compose-verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:
name: Docker Image Build
strategy:
matrix:
node: ['14', '16']
node: ['14', '16', '18']
implementation: ['restify', 'plain', 'express', 'koa', 'fastify']
runs-on: 'ubuntu-20.04'
steps:
- name: Checkout the commit triggering this job
uses: actions/checkout@v2
uses: actions/checkout@v4

# Commands you use with run start in new containers with configuration defined by that of
# the service, including volumes, links, and other details, except:
Expand All @@ -32,7 +32,7 @@ jobs:
docker-compose run -d --service-ports backend npm run start:${{ matrix.implementation }}
- name: Setup Node with npm cache
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'npm'
Expand Down

0 comments on commit c5509ed

Please sign in to comment.