diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 59edf3d..0da7dc6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,7 +16,11 @@ jobs: runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 16 + - run: npm install - run: npm run all - run: npm run pack @@ -37,7 +41,10 @@ jobs: runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 16 - run: npm install - run: npm run all - run: npm run pack diff --git a/action.yml b/action.yml index 93de13d..00860c3 100644 --- a/action.yml +++ b/action.yml @@ -12,5 +12,5 @@ inputs: required: true description: 'GitHub token from secrets.GITHUB_TOKEN' runs: - using: 'node12' + using: 'node16' main: 'dist/index.js'