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 739709b commit cc79f29
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 @@ -15,7 +15,7 @@ jobs:
dnf -y install meson gobject-introspection-devel systemd-devel
dnf -y install gi-docgen python3-gobject
- name: Checkout repository.
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Create gi-docgen.wrap in subproject directory
run: |
mkdir subprojects
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
DEBIAN_FRONTEND=noninteractive apt-get install -y meson ninja-build libglib2.0-dev gobject-introspection libgirepository1.0-dev
DEBIAN_FRONTEND=noninteractive apt-get install -y gi-docgen python3-gi
- name: Checkout repository.
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Create gi-docgen.wrap in subproject directory
run: |
mkdir subprojects
Expand Down

0 comments on commit cc79f29

Please sign in to comment.