Skip to content

Commit

Permalink
Merge pull request #634 from reactiflux/upgrade-node
Browse files Browse the repository at this point in the history
Upgrade Node for security
  • Loading branch information
nickserv committed Sep 28, 2023
2 parents b2e7598 + 44350b6 commit 6bdb6ae
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Build and push to Docker Hub
uses: docker/build-push-action@v1
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ jobs:

strategy:
matrix:
node-version: [12.x, 14.x, 15.x, 16.x]
node-version: [12.x, 14.x, 15.x, 16.x, 18.x, 20.x]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:12-alpine
FROM node:20-alpine
ENV LIBRARY_PATH=/lib:/usr/lib

RUN mkdir /bot
Expand Down

0 comments on commit 6bdb6ae

Please sign in to comment.