From 45375503faea41e5dd5e5097baa66c333b50f906 Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Fri, 21 Apr 2023 10:06:49 -0400 Subject: [PATCH] chore(ci): update github action packages This PR updates all GitHub Action packages to the latest for the upcoming changes: 1. Runners are now using Node 16: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/ 2. `set-output` and `save-state` are deprecated: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ --- .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 c6392fde5..03867c2b5 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -16,9 +16,9 @@ jobs: os: [windows-latest, macOS-latest] steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node_version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node_version }} - name: Install Dependencies