From a9afbb92db3b9f7d2811b057fe1a4a48a6968ec9 Mon Sep 17 00:00:00 2001 From: Jonathan Atiene <34762800+bemijonathan@users.noreply.github.com> Date: Sat, 30 Sep 2023 14:22:40 +0100 Subject: [PATCH] fix --- .github/workflows/check-dist.yml | 6 +++--- .github/workflows/ci.yml | 8 +++++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/check-dist.yml b/.github/workflows/check-dist.yml index 5a8e6ef..066e00b 100644 --- a/.github/workflows/check-dist.yml +++ b/.github/workflows/check-dist.yml @@ -13,10 +13,10 @@ on: branches: - main paths-ignore: - - '**.md' + - "**.md" pull_request: paths-ignore: - - '**.md' + - "**.md" workflow_dispatch: jobs: @@ -36,7 +36,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v3 with: - node-version: 18 + node-version: 20 cache: npm - name: Install Dependencies diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2547baf..4425ee9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: id: setup-node uses: actions/setup-node@v3 with: - node-version: 18 + node-version: 20 cache: npm - name: Install Dependencies @@ -45,12 +45,14 @@ jobs: id: setup-node uses: actions/setup-node@v3 with: - node-version: 18 + node-version: 20 cache: npm - name: Test Local Action id: test-action - uses: ./ # Uses an action in the root directory + uses: ./ + with: + node-version: 20 - name: Print Output id: output