Skip to content
This repository has been archived by the owner on Oct 13, 2023. It is now read-only.

Version 1.1.0 uses Node16 (instead of Node12) #223

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.0] - 2022-11-29

### Fixed

- 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

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ inputs:
default: false

runs:
using: 'node12'
using: 'node16'
main: 'dist/index.js'
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down