From a85d9b8d8c9cc7c82981ebf011d9be602d5dda00 Mon Sep 17 00:00:00 2001 From: Adriel Perkins Date: Wed, 23 Apr 2025 10:57:45 -0400 Subject: [PATCH 1/2] ci: update checkout to semver to validate renovate behavior --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d43ae0d..2242c58 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,12 +10,12 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 + - uses: actions/checkout@4 - name: Use Node.js - uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4 + uses: actions/setup-node@4.2 with: node-version: '20.x' cache: 'npm' - run: npm ci - run: npm run build - - run: npm run lint \ No newline at end of file + - run: npm run lint From ad292d189f269fb5fcdf4305c6e0bbf87fda2104 Mon Sep 17 00:00:00 2001 From: Adriel Perkins Date: Wed, 23 Apr 2025 10:59:24 -0400 Subject: [PATCH 2/2] chore: add v --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2242c58..2df0f41 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,9 +10,9 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@4 + - uses: actions/checkout@v4 - name: Use Node.js - uses: actions/setup-node@4.2 + uses: actions/setup-node@v4.2 with: node-version: '20.x' cache: 'npm'