From 999d660422800808a7dada9c4564d7ad67134c3e Mon Sep 17 00:00:00 2001 From: Christian Emmer <10749361+emmercm@users.noreply.github.com> Date: Fri, 28 Jul 2023 19:24:25 -0400 Subject: [PATCH] CI: version-bumping GitHub Action requires Node.js (#525) --- .github/workflows/version-bump.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/version-bump.yml b/.github/workflows/version-bump.yml index d75bb2ae3..3843c9a28 100644 --- a/.github/workflows/version-bump.yml +++ b/.github/workflows/version-bump.yml @@ -26,7 +26,13 @@ jobs: bump: runs-on: ubuntu-latest steps: + # Setup and install - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version-file: '.nvmrc' + cache: 'npm' + - run: npm ci # Bump the version and commit to the default branch - id: bump-and-commit