Skip to content

Commit

Permalink
ci: update to actions/checkout@v4
Browse files Browse the repository at this point in the history
From the current runs:
  Node.js 16 actions are deprecated. Please update the following actions
  to use Node.js 20: actions/checkout@v3, actions/setup-python@v4,
  actions/upload-artifact@v3. For more information see:
  https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
  • Loading branch information
whot committed Mar 18, 2024
1 parent 1098801 commit c40ae8a
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-for-sysinfo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
checksysinfo:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: tj-actions/changed-files@v41
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/freebsd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
freebsd:
runs-on: macos-12
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: meson test
uses: vmactions/freebsd-vm@v0
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/label-commenter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ jobs:
comment:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Label Commenter
uses: peaceiris/actions-label-commenter@v1
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
# https://github.com/mesonbuild/meson/issues/764
- '-Db_sanitize=address,undefined -Db_lundef=false'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
# install python so we get pip for meson
- uses: actions/setup-python@v4
with:
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
valgrind:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
# install python so we get pip for meson
- uses: actions/setup-python@v4
with:
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
- sudo csplit data/libwacom.stylus '/^\[0x822\]/' && sudo mv xx00 /etc/libwacom/first.stylus && sudo mv xx01 /usr/share/libwacom/libwacom.stylus

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
# install python so we get pip for meson
- uses: actions/setup-python@v4
with:
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
needs: build-and-dist
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
# install python so we get pip for meson
- uses: actions/setup-python@v4
with:
Expand Down Expand Up @@ -196,7 +196,7 @@ jobs:
TARBALLDIR: '_tarball_dir'
INSTALLDIR: '/tmp/libwacom/_inst'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: install python
uses: actions/setup-python@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/pkginstall
with:
apt: $UBUNTU_PACKAGES
Expand Down

0 comments on commit c40ae8a

Please sign in to comment.