From 21a00be6eb75549f807224f4e266c499f0364ee6 Mon Sep 17 00:00:00 2001 From: "Bobby R. Bruce" Date: Sat, 30 Mar 2024 01:14:57 -0700 Subject: [PATCH] misc: Fix 'checkout@v2' to 'checkout@v4' This caused a 'Node.js 16 actions are deprecated;' error. With this commit all our checkout actions are set to '@v4'. Change-Id: I0f931bf7967f49ee44b7bf1d6a56e19f017fb948 --- .github/workflows/daily-tests.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/daily-tests.yaml b/.github/workflows/daily-tests.yaml index 81de5c4746..cea44998e7 100644 --- a/.github/workflows/daily-tests.yaml +++ b/.github/workflows/daily-tests.yaml @@ -16,7 +16,7 @@ jobs: outputs: build-name: ${{ steps.artifact-name.outputs.name }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - id: artifact-name run: echo "name=$(date +"%Y-%m-%d_%H.%M.%S-")" >> $GITHUB_OUTPUT