From 2683b4d3da1affffa31a4381ffc9b13af9464fd7 Mon Sep 17 00:00:00 2001 From: debian-go <438092+upbeat-backbone-bose@users.noreply.github.com> Date: Thu, 7 Mar 2024 12:02:06 +0800 Subject: [PATCH] Update checkout action version to avoid build warnning message. (#92) Modify checkout actions to run on Node 20 instead of Node 16. https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/ --- .github/workflows/action-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/action-test.yml b/.github/workflows/action-test.yml index bde6f89..c7931d0 100644 --- a/.github/workflows/action-test.yml +++ b/.github/workflows/action-test.yml @@ -9,7 +9,7 @@ jobs: test: # make sure the action works on a clean machine without building runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: ./ # with: # BOT_GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }}