From 3696b514bf5e65176eba14851bafa6acb12f1b4d Mon Sep 17 00:00:00 2001 From: Abdul Rauf Date: Thu, 10 Nov 2022 06:30:02 +0000 Subject: [PATCH 1/2] ci: update actions/checkout to v3 --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a7e7a02c..5d45d533 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: name: Build & Test runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: node-version: 18 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c765df62..8a8662b6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@master + uses: actions/checkout@v3 with: # This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits fetch-depth: 0 From 62d47a771c061ef6d5e00673ccd380f5851e5d5a Mon Sep 17 00:00:00 2001 From: Abdul Rauf Date: Thu, 10 Nov 2022 06:32:05 +0000 Subject: [PATCH 2/2] ci: update actions/cache to v3 --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5d45d533..0089272e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: with: node-version: 18 - name: Cache node modules - uses: actions/cache@v1 + uses: actions/cache@v3 env: cache-name: cache-node-modules with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8a8662b6..0a6fb601 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,7 +22,7 @@ jobs: node-version: 18 - name: Cache node modules - uses: actions/cache@v1 + uses: actions/cache@v3 env: cache-name: cache-node-modules with: