From 6aced2fd5757f9e35b46a7815ac15f1d7c6b75de Mon Sep 17 00:00:00 2001 From: Tim Crawford Date: Fri, 1 Mar 2024 08:54:02 -0700 Subject: [PATCH] ci: Update actions/checkout to v4 Fixes the following warnings in Actions: Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3. Signed-off-by: Tim Crawford --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 71a9e6f..efc4abd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: outputs: boards: ${{ steps.board-matrix.outputs.boards }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install dependencies run: ./scripts/deps.sh @@ -37,7 +37,7 @@ jobs: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install dependencies run: ./scripts/deps.sh @@ -54,7 +54,7 @@ jobs: # TODO: Conditionally build based on files changed? steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install dependencies run: ./scripts/deps.sh