From 83aad71fcd603d0bc5caaea4af187ac69ad96062 Mon Sep 17 00:00:00 2001 From: Thomas Merz Date: Fri, 22 Dec 2023 14:46:39 +0100 Subject: [PATCH] =?utf8?q?=F0=9F=91=B7=20use=20latest=20major=20version=20?= =?utf8?q?for=20actions/setup-node?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- .github/workflows/lint.yml | 2 +- .github/workflows/run-automations.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 2d0f0dc..1222e23 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -10,7 +10,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Use Node.js - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: 18.x - run: node scripts/lint.js diff --git a/.github/workflows/run-automations.yml b/.github/workflows/run-automations.yml index 0f41e45..90cb66a 100644 --- a/.github/workflows/run-automations.yml +++ b/.github/workflows/run-automations.yml @@ -11,7 +11,7 @@ jobs: - run: git config --global --add safe.directory /github/workspace - uses: actions/checkout@v4 - name: Use Node.js - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: 18.x - run: node scripts/create-everything-list.js -- 2.47.2