Skip to content

Commit

Permalink
Changed version of node runtime for action from node16 to node20
Browse files Browse the repository at this point in the history
  • Loading branch information
tarampampam committed Nov 5, 2023
1 parent d6d24ac commit 7aec950
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Expand Up @@ -27,7 +27,7 @@ jobs:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with: { node-version: '16' }
with: { node-version: '20' }

- uses: actions/cache@v3
id: yarn-cache
Expand All @@ -51,7 +51,7 @@ jobs:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with: { node-version: '16' }
with: { node-version: '20' }

- uses: actions/cache@v3
id: yarn-cache
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Expand Up @@ -4,6 +4,12 @@ All notable changes to this package will be documented in this file.

The format is based on [Keep a Changelog][keepachangelog] and this project adheres to [Semantic Versioning][semver].

## v1.4.0

### Changed

- Version of node runtime for action from node16 to node20

## v1.3.0

### Added
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Expand Up @@ -22,7 +22,7 @@ inputs:
required: false

runs:
using: 'node16'
using: 'node20'
main: 'dist/main/index.js'
post: 'dist/post/index.js'

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Expand Up @@ -5,7 +5,7 @@ volumes:

services:
node:
image: node:16-alpine # Image page: <https://hub.docker.com/_/node>
image: node:20-alpine # Image page: <https://hub.docker.com/_/node>
environment:
PS1: '\[\033[1;32m\]\[\033[1;36m\][\u@\h] \[\033[1;34m\]\w\[\033[0;35m\] \[\033[1;36m\]# \[\033[0m\]'
PATH: "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/app/node_modules/.bin"
Expand Down

0 comments on commit 7aec950

Please sign in to comment.