From 767b3f7e79b26765ce081fc24342d6bbc9ce6a2c Mon Sep 17 00:00:00 2001 From: Marek Kaput Date: Wed, 4 Dec 2024 13:51:43 +0100 Subject: [PATCH] Update `actions/checkout` and `actions/setup-node` (#35) --- .github/workflows/check-dist.yml | 2 +- .github/workflows/ci.yml | 6 +++--- README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/check-dist.yml b/.github/workflows/check-dist.yml index e3a8964..18475e7 100644 --- a/.github/workflows/check-dist.yml +++ b/.github/workflows/check-dist.yml @@ -20,7 +20,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: 20.x + node-version: 20 - run: npm ci - name: Rebuild the dist/ directory diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9645435..4f8ed90 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: - windows-latest runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: "Create bare bones Scarb.lock for cache testing" shell: bash @@ -111,8 +111,8 @@ jobs: lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: 20 cache: "npm" diff --git a/README.md b/README.md index 32eb2e7..6d80c5e 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ jobs: check: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: software-mansion/setup-scarb@v1 with: scarb-version: "2.9.1"