From b2a80ffbaee3e0d783c063e3a7225a4ac0245984 Mon Sep 17 00:00:00 2001 From: Eric Richardson Date: Wed, 6 Sep 2023 09:47:37 -0400 Subject: [PATCH] feat(*): trigger release with updated dependencies also try with v2 node setup in github actions --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ab317574..98876ccf 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,8 +11,8 @@ jobs: name: Linting and testing runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 - - uses: actions/setup-node@v1 + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2 with: node-version: '18.x' - name: install dependencies @@ -28,8 +28,8 @@ jobs: runs-on: ubuntu-latest needs: [lint-and-test] steps: - - uses: actions/checkout@v1 - - uses: actions/setup-node@v1 + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2 with: node-version: '18.x' - name: install dependencies