From 688140331c408ecbe9098038c04d94111a65199d Mon Sep 17 00:00:00 2001 From: Rich Brown Date: Fri, 7 Jun 2024 07:09:33 -0400 Subject: [PATCH] Bump Node.js version to 20 (from 16); Assorted maintenance edits --- CHANGELOG.md | 9 +++++++++ README.md | 15 ++++++++++----- action.yml | 2 +- package.json | 2 +- 4 files changed, 21 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d279d88..0c996ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.1.1] - 2024-06-07 + +### Fixed + +- Upgrade action.yml to use Node20 (replacing Node16 +- Update version number to 1.1.1 in _package.json_ +- Testing: commit the change, see if it triggers an update in +[PRQL repo](https://github.com/PRQL/prql) + ## [1.1.0] - 2022-11-29 ### Fixed diff --git a/README.md b/README.md index 375c1c4..819d128 100644 --- a/README.md +++ b/README.md @@ -123,10 +123,15 @@ This Action is distributed under the terms of the MIT license, see [LICENSE](htt ## Contribute and support -Any contributions are welcomed! +This is a fork of the original repo at [https://github.com/actions-rs/cargo](https://github.com/actions-rs/cargo) -If you want to report a bug or have a feature request, -check the [Contributing guide](https://github.com/actions-rs/.github/blob/master/CONTRIBUTING.md). +It is maintained from time to time to keep the Node.js version up to date. +Pointers to well-supported alternatives are welcome. -You can also support author by funding the ongoing project work, -see [Sponsoring](https://actions-rs.github.io/#sponsoring). +~~Any contributions are welcomed!~~ + +~~If you want to report a bug or have a feature request, +check the [Contributing guide](https://github.com/actions-rs/.github/blob/master/CONTRIBUTING.md).~~ + +~~You can also support author by funding the ongoing project work, +see [Sponsoring](https://actions-rs.github.io/#sponsoring).~~ diff --git a/action.yml b/action.yml index 2d2d7c8..b0e33a5 100644 --- a/action.yml +++ b/action.yml @@ -19,5 +19,5 @@ inputs: default: false runs: - using: 'node16' + using: 'node20' main: 'dist/index.js' diff --git a/package.json b/package.json index 24bc284..466bd33 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rust-cargo", - "version": "1.1.0", + "version": "1.1.1", "private": false, "description": "Run cargo command", "main": "lib/main.js",