From c44b7e8e30d1e17d2e7b882769155124085d1bff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Rebours?= Date: Thu, 19 Jan 2023 17:05:14 +0100 Subject: [PATCH] update actions/setup-node & actions/checkout to v3 --- .github/workflows/github-actions-demo.yml | 24 +++++++++++------------ CHANGELOG.md | 1 + 2 files changed, 13 insertions(+), 12 deletions(-) diff --git a/.github/workflows/github-actions-demo.yml b/.github/workflows/github-actions-demo.yml index ffc9706..13f55a5 100644 --- a/.github/workflows/github-actions-demo.yml +++ b/.github/workflows/github-actions-demo.yml @@ -6,11 +6,11 @@ jobs: quality: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Install Node.js 18 - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: - node-version: 18.x + node-version: 18 cache: 'npm' - run: npm ci - run: npm run lint @@ -20,11 +20,11 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [16.x, 18.x] + node-version: [16, 18] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Install Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} cache: 'npm' @@ -35,11 +35,11 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Install Node.js 18 - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: - node-version: 18.x + node-version: 18 cache: 'npm' - name: Install Chrome Stable uses: browser-actions/setup-chrome@latest @@ -50,11 +50,11 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Install Node.js 18 - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: - node-version: 18.x + node-version: 18 cache: 'npm' - run: npm ci - run: npm run test:react-native diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b72312..2ddf0fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,7 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ### Changed - No longer execute `test-typings.ts` to check typings, just compile it. +- Update `actions/checkout` and `actions/setup-node` to v3. ## [3.1.0] - 2022-09-02 ### Added