From bc57278d743cbfba36b79faf46953a6179f5b379 Mon Sep 17 00:00:00 2001 From: Andre Miras Date: Mon, 2 Dec 2024 16:51:49 +0100 Subject: [PATCH] :arrow_up: Bump to node 20 --- .github/workflows/cli-tests.yml | 2 ++ .github/workflows/documentation.yml | 2 ++ .github/workflows/publish.yml | 2 +- .github/workflows/tests.yml | 2 ++ 4 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cli-tests.yml b/.github/workflows/cli-tests.yml index 1d2c134..7a6648e 100644 --- a/.github/workflows/cli-tests.yml +++ b/.github/workflows/cli-tests.yml @@ -11,5 +11,7 @@ jobs: steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 + with: + node-version: "20.x" - run: yarn install --no-ignore-optional - run: yarn cli --help diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index b1ef64d..fdc62d9 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -11,6 +11,8 @@ jobs: steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 + with: + node-version: "20.x" - name: git config run: | git config user.name documentation-deploy-action diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c8cd843..1dc72df 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: "16.x" + node-version: "20.x" registry-url: "https://registry.npmjs.org" - run: yarn install - run: yarn build diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d11ba23..bccb5f2 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,6 +10,8 @@ jobs: steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 + with: + node-version: "20.x" - run: yarn install - run: yarn lint - run: yarn build