Skip to content

Commit

Permalink
ci: use actions/checkout@v4
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
takaswie committed Mar 15, 2024
1 parent 1b38208 commit bc59548
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit bc59548

Please sign in to comment.