From ab8468ce2465a8b7045cb83793923b340ecb483d Mon Sep 17 00:00:00 2001 From: Rich Brown Date: Tue, 29 Nov 2022 17:44:29 -0500 Subject: [PATCH 01/11] Update to use node16 Github Actions will stop working with Node12 soon-ish --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 599fbce..2d2d7c8 100644 --- a/action.yml +++ b/action.yml @@ -19,5 +19,5 @@ inputs: default: false runs: - using: 'node12' + using: 'node16' main: 'dist/index.js' From 608349f3e16488f1003ee966385b82eb1eeecc4b Mon Sep 17 00:00:00 2001 From: Rich Brown Date: Tue, 29 Nov 2022 17:45:18 -0500 Subject: [PATCH 02/11] Update package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 18c7307..24bc284 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rust-cargo", - "version": "1.0.3", + "version": "1.1.0", "private": false, "description": "Run cargo command", "main": "lib/main.js", From df6ec50899113b33b2084839bc21a210f795ae3c Mon Sep 17 00:00:00 2001 From: Rich Brown Date: Tue, 29 Nov 2022 17:48:18 -0500 Subject: [PATCH 03/11] Update CHANGELOG.md --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9131f15..5f5d784 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ 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.0] - 2022-11-29 + +### Fixed + +- Upgrade action.yml to use Node16 (replacing Node12) +- Bump version number to 1.1.0 + ## [1.0.3] - 2019-11-24 ### Fixed From 3b15b8f764630221a1f5ef891a0c7a299805e827 Mon Sep 17 00:00:00 2001 From: Rich Brown Date: Tue, 29 Nov 2022 20:22:44 -0500 Subject: [PATCH 04/11] Update to use actions/checkout@v3 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ec78b0d..6f34304 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: env: token: ${{ secrets.GITHUB_TOKEN }} - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - run: npm ci - run: npm run lint - run: npm run build From 837a5f3a2f0cf382a402f5811b6e523917a8ffb6 Mon Sep 17 00:00:00 2001 From: Rich Brown Date: Tue, 29 Nov 2022 20:39:43 -0500 Subject: [PATCH 05/11] Update Changelog for GHA --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f5d784..38bd7a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Upgrade action.yml to use Node16 (replacing Node12) - Bump version number to 1.1.0 +- See if another update triggers good stuff ## [1.0.3] - 2019-11-24 From f63a1fa33967235bfdb68530b9b96467e75d750e Mon Sep 17 00:00:00 2001 From: Rich Brown Date: Tue, 29 Nov 2022 20:42:03 -0500 Subject: [PATCH 06/11] Update again --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 38bd7a0..d279d88 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Upgrade action.yml to use Node16 (replacing Node12) - Bump version number to 1.1.0 - See if another update triggers good stuff +- Trigger another update ## [1.0.3] - 2019-11-24 From 688140331c408ecbe9098038c04d94111a65199d Mon Sep 17 00:00:00 2001 From: Rich Brown Date: Fri, 7 Jun 2024 07:09:33 -0400 Subject: [PATCH 07/11] 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", From 38a3cf9fde44d82c75b1b463acb8df22db5f1094 Mon Sep 17 00:00:00 2001 From: Rich Brown Date: Fri, 7 Jun 2024 21:08:49 -0400 Subject: [PATCH 08/11] Add 'version' line --- action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/action.yml b/action.yml index b0e33a5..396c522 100644 --- a/action.yml +++ b/action.yml @@ -21,3 +21,4 @@ inputs: runs: using: 'node20' main: 'dist/index.js' + version: '1.1.1' From 0e77f895e394748b8b92b19066b818838106d374 Mon Sep 17 00:00:00 2001 From: Rich Brown Date: Fri, 7 Jun 2024 21:17:30 -0400 Subject: [PATCH 09/11] Restore previous (no "version:" ... is required; need to tag the release, though, to get a version number --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 396c522..71b70f9 100644 --- a/action.yml +++ b/action.yml @@ -21,4 +21,4 @@ inputs: runs: using: 'node20' main: 'dist/index.js' - version: '1.1.1' + From 1baa1a0000b4560ddf74c58d6e5deb18982bd8d2 Mon Sep 17 00:00:00 2001 From: Rich Brown Date: Sat, 8 Jun 2024 08:06:08 -0400 Subject: [PATCH 10/11] Restore package.json version to 1.1.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 466bd33..24bc284 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rust-cargo", - "version": "1.1.1", + "version": "1.1.0", "private": false, "description": "Run cargo command", "main": "lib/main.js", From 98d5963300d6f7114ce114ad1a8f9e59f1497792 Mon Sep 17 00:00:00 2001 From: Rich Brown Date: Wed, 19 Jun 2024 10:36:09 -0400 Subject: [PATCH 11/11] Update package.json to version 1.1.1 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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",