Skip to content

Commit

Permalink
fix: Node12 is deprecated for GitHub Actions [andoshin11#41]
Browse files Browse the repository at this point in the history
  • Loading branch information
shanegenschaw committed Mar 24, 2023
1 parent bde27d2 commit 29fafd8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ jobs:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Restore dependencies
uses: actions/cache@v1
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('yarn.lock') }}
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ inputs:
description: 'Path to run from. If not set, top level directory will be used.'
required: false
runs:
using: 'node12'
using: 'node16'
main: 'dist/index.js'
branding:
icon: 'check-circle'
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "typescript-error-reporter-action",
"version": "1.0.3",
"version": "1.0.4",
"main": "dist/index.js",
"author": "andoshin11 <[email protected]>",
"license": "MIT",
Expand Down

0 comments on commit 29fafd8

Please sign in to comment.