From bf05c22bc7917088e4da42cbe6532321064e99bb Mon Sep 17 00:00:00 2001 From: Takashi Sakamoto Date: Fri, 15 Mar 2024 15:01:53 +0900 Subject: [PATCH] ci: use actions/checkout@v4 To suppress the following warning in github actions: Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/. Signed-off-by: Takashi Sakamoto --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1e479ec..68bfe84 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,7 +9,7 @@ jobs: image: fedora:rawhide steps: - name: Checkout repository. - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Prepare build environment. run: | dnf -y upgrade @@ -38,7 +38,7 @@ jobs: image: ubuntu:latest steps: - name: Checkout repository. - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Prepare build environment. run: | DEBIAN_FRONTEND=noninteractive apt-get update -- 2.47.3