From 7aec950f3b114c4fcf6012070c3709ecff0eb6f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=D0=B0ramtamt=C4=81m?= <7326800+tarampampam@users.noreply.github.com> Date: Sun, 5 Nov 2023 11:09:39 +0000 Subject: [PATCH] Changed version of node runtime for action from node16 to node20 --- .github/workflows/tests.yml | 4 ++-- CHANGELOG.md | 6 ++++++ action.yml | 2 +- docker-compose.yml | 2 +- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3aacf84..fca6ebe 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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 @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 51b745c..920471c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/action.yml b/action.yml index fcf60b3..e3aba26 100644 --- a/action.yml +++ b/action.yml @@ -22,7 +22,7 @@ inputs: required: false runs: - using: 'node16' + using: 'node20' main: 'dist/main/index.js' post: 'dist/post/index.js' diff --git a/docker-compose.yml b/docker-compose.yml index e4b4662..3395159 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -5,7 +5,7 @@ volumes: services: node: - image: node:16-alpine # Image page: + image: node:20-alpine # Image page: 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"