From: Takashi Sakamoto Date: Fri, 15 Mar 2024 06:01:53 +0000 (+0900) Subject: ci: use actions/checkout@v4 X-Git-Tag: v0.3.1~7 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=bf05c22bc7917088e4da42cbe6532321064e99bb;p=alsa-gobject.git 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 --- 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