From 1238fd162add698417d57c4e9408504e7708b87a Mon Sep 17 00:00:00 2001 From: Gregor MacLennan Date: Thu, 5 Oct 2023 11:12:22 +0100 Subject: [PATCH 1/2] chore: update github action steps Updates to actions/checkout@v4 and actions/setup-node@v2 Removes deprecation warnings --- .github/workflows/node.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml index b645742bb..eda259bb9 100644 --- a/.github/workflows/node.yml +++ b/.github/workflows/node.yml @@ -21,9 +21,9 @@ jobs: - '16.x' - '18.x' steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} - run: npm ci From 6a0d68fcd7eaf1874a49f57839794d5015adfb8e Mon Sep 17 00:00:00 2001 From: Gregor MacLennan Date: Thu, 5 Oct 2023 13:39:36 +0100 Subject: [PATCH 2/2] Update node.yml --- .github/workflows/node.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml index eda259bb9..e469eb7e0 100644 --- a/.github/workflows/node.yml +++ b/.github/workflows/node.yml @@ -23,7 +23,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - run: npm ci