diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e780e7f..79c4930 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -7,7 +7,7 @@ on: jobs: update-git-tag: # Reason: name: Update latest major git tag - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5b36916..197bad1 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -15,7 +15,7 @@ concurrency: jobs: gitleaks: name: Gitleaks - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 with: {fetch-depth: 0} @@ -25,13 +25,13 @@ jobs: eslint: name: Run eslint - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest env: {FORCE_COLOR: 'true'} steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 - with: {node-version: '16'} + with: {node-version: '20'} - uses: actions/cache@v3 id: yarn-cache @@ -47,7 +47,7 @@ jobs: dist-built: name: Check distributive built state - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest outputs: dist-changed: ${{ steps.state.outputs.changed }} env: {FORCE_COLOR: 'true'} @@ -55,7 +55,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 @@ -79,7 +79,7 @@ jobs: name: Commit and push fresh distributive needs: [dist-built] if: ${{ needs.dist-built.outputs.dist-changed == 'true' }} - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest permissions: contents: write pull-requests: write diff --git a/CHANGELOG.md b/CHANGELOG.md index adadefa..5032a7b 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.2.0 + +### Changed + +- Version of node runtime for action from node16 to node20 + ## v1.1.0 ### Removed diff --git a/action.yml b/action.yml index 782da59..cf649a0 100644 --- a/action.yml +++ b/action.yml @@ -12,7 +12,7 @@ inputs: default: ${{ github.token }} runs: - using: node16 + using: node20 main: dist/index.js branding: 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"