From 359c90312ec5ccf344bc2209d859114759145efb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodrigo=20L=C3=B3pez=20Dato?= Date: Tue, 8 Oct 2024 00:03:38 -0300 Subject: [PATCH] Upgrade actions/setup-node to v4 --- .github/workflows/publish.yml | 2 +- .github/workflows/pull_request.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 330e1ea..9fa63c9 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -14,7 +14,7 @@ jobs: - name: Cloning repo uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: node-version: '18.x' registry-url: 'https://registry.npmjs.org' diff --git a/.github/workflows/pull_request.yaml b/.github/workflows/pull_request.yaml index e1a7388..c881a48 100644 --- a/.github/workflows/pull_request.yaml +++ b/.github/workflows/pull_request.yaml @@ -23,7 +23,7 @@ jobs: auth_header="$(git config --local --get http.https://github.com/.extraheader)" git submodule sync --recursive git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1 - - uses: actions/setup-node@v1 + - uses: actions/setup-node@v4 with: node-version: "18.x" - name: cache node modules