From dfb81bef1653f03944b80e1221772101166dbfad Mon Sep 17 00:00:00 2001 From: Nerixyz Date: Wed, 7 Feb 2024 14:00:41 +0100 Subject: [PATCH] deps(ci): update actions to v4 and node to 20 --- .github/workflows/ci.yml | 8 ++++---- action.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 617fcf0..4c96375 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ on: branches: [master] env: - NODE_VERSION: 16 + NODE_VERSION: 20 jobs: test: @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: prettier --version uses: ./ with: @@ -37,9 +37,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Node.js ${{ env.NODE_VERSION }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ env.NODE_VERSION }} cache: yarn diff --git a/action.yml b/action.yml index ef23ea0..0709326 100644 --- a/action.yml +++ b/action.yml @@ -8,5 +8,5 @@ inputs: description: Prettier CLI arguments required: true runs: - using: node16 + using: node20 main: dist/index.js