From c2534e835d482cd79ebbc1c489879f61b2cf8873 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominykas=20Bly=C5=BE=C4=97?= Date: Tue, 14 Nov 2023 09:32:14 +0200 Subject: [PATCH] ci: unpin nodejs workflow version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Not 100% sure if it was pinned deliberately earlier - there are several other things that are pinned to major only, and I think that's fine. When this is pinned, it might sometimes not receive new versions of Node.js (as the release dates are cached inside the action, as opposed to getting resolved each time). For some reason, dependabot did not open a PR here 🤷 --- .github/workflows/nodejs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 4c3a77ec1e3..b7c866665bd 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -15,7 +15,7 @@ on: jobs: build: name: Test - uses: pkgjs/action/.github/workflows/node-test.yaml@v0.1.7 + uses: pkgjs/action/.github/workflows/node-test.yaml@v0.1 with: runs-on: ubuntu-latest, windows-latest test-command: npm run coverage:ci