From 70f164b9557b42beca92ba78f91c51c644700e28 Mon Sep 17 00:00:00 2001 From: Josh Lee Date: Mon, 5 Dec 2022 11:53:29 +0000 Subject: [PATCH] Deprecation warnings in workflow actions Boring details: - Node.js 12 actions are deprecated. For more information see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/. Please update the following actions to use Node.js 16: actions/checkout@v2.3.1, actions/setup-node@v1 - The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ --- .github/workflows/deploy.yml | 4 ++-- .github/workflows/lint.yml | 2 +- .github/workflows/test-build.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 94977e7c8..b2bd7ace9 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -17,9 +17,9 @@ jobs: url: ${{ steps.deployment.outputs.page_url }} steps: - name: Checkout 🛎️ - uses: actions/checkout@v2.3.1 + uses: actions/checkout@v3 - name: Use Node.js 17.x - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: 17.x - name: Install and Build 🔧 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 7b630953b..04f98f9bb 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -10,7 +10,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: # Make sure the actual branch is checked out when running on pull requests repository: ${{ github.event.pull_request.head.repo.full_name }} diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml index dcb368d57..b76f04f8d 100644 --- a/.github/workflows/test-build.yml +++ b/.github/workflows/test-build.yml @@ -9,9 +9,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout 🛎️ - uses: actions/checkout@v2.3.1 + uses: actions/checkout@v3 - name: Use Node.js 17.x - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: 17.x - name: Install and Build 🔧