From 2a28ecd3f795e91c9f48638913285602ca389c38 Mon Sep 17 00:00:00 2001 From: confused_techie Date: Fri, 5 Apr 2024 07:32:47 -0700 Subject: [PATCH] Configure `static-checking` This solution is recommended here: https://github.com/EndBug/version-check/issues/218 --- .github/workflows/release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3f31fe6..88e2bf3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,6 +29,10 @@ jobs: - name: Check Version id: check uses: EndBug/version-check@v2 + with: + # Since we trigger this action via `workflow_run` we fail to have some values + # this module expects, the below option should make them work together + static-checking: localIsNew - name: Setup NodeJS - ${{ env.NODE_VERSION }} uses: actions/setup-node@v4