Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Another update to Node 20 #10

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4.1.1
- name: get version
id: version
uses: ./
Expand All @@ -27,4 +27,4 @@ jobs:
prop_path: 'scripts.format'

- run: echo ${{steps.get_json_property.outputs.prop}}
- run: echo ${{steps.get_json_property.outputs.propStr}}
- run: echo ${{steps.get_json_property.outputs.propStr}}
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16.16.0
20.11.25
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ inputs:
prop_path:
description: 'dot separated property key (e.g.: scripts.build)'
runs:
using: 'node16'
using: 'node20'
main: 'dist/index.js'
branding:
color: "yellow"
Expand Down
148 changes: 0 additions & 148 deletions package-lock.json

This file was deleted.

14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "get-json-property",
"version": "0.2.0",
"version": "0.3.0",
"private": true,
"description": "Simple GitHub Action to read a specified property from a JSON file.",
"description": "a fork of Github Action Json Property, silly thing i do.",
"main": "lib/index.js",
"scripts": {
"build": "tsc && npm run pack",
Expand All @@ -24,12 +24,12 @@
"author": "notiz.dev",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0"
"@actions/core": "1.10.1"
},
"devDependencies": {
"@types/node": "^16.11.6",
"@vercel/ncc": "^0.34.0",
"prettier": "^1.19.1",
"typescript": "4.8.4"
"@types/node": "20.11.25",
"@vercel/ncc": "0.38.1",
"prettier": "3.2.5",
"typescript": "5.4.2"
}
}