From 380e111ba1f61a33b1dd9bf4949067c76cec863e Mon Sep 17 00:00:00 2001 From: Ryan Cooney Date: Wed, 12 Jul 2023 08:22:23 -0700 Subject: [PATCH] fix: Update to Node 18 (#39) --- .github/workflows/ci-cd.yml | 8 ++++---- .github/workflows/lint-pr.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index ba84baf..3cd4d4a 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -19,10 +19,10 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Use Node.js 16 + - name: Use Node.js 18 uses: actions/setup-node@v3 with: - node-version: 16.x + node-version: 18.x - run: npm install @@ -47,10 +47,10 @@ jobs: - name: Fetch git tags run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* - - name: Use Node.js 16 + - name: Use Node.js 18 uses: actions/setup-node@v3 with: - node-version: 16.x + node-version: 18.x - run: npm install diff --git a/.github/workflows/lint-pr.yml b/.github/workflows/lint-pr.yml index 4e418aa..23f6bf0 100644 --- a/.github/workflows/lint-pr.yml +++ b/.github/workflows/lint-pr.yml @@ -12,6 +12,6 @@ jobs: name: Validate PR title runs-on: ubuntu-latest steps: - - uses: amannn/action-semantic-pull-request@v4 + - uses: amannn/action-semantic-pull-request@v5 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}