Skip to content

Commit

Permalink
workflows: bump checkout action to v4
Browse files Browse the repository at this point in the history
Signed-off-by: Rui Chen <[email protected]>
  • Loading branch information
chenrui333 authored and aruiz committed Sep 23, 2023
1 parent 834657c commit 481533d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
Build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: brew update
- run: brew install webp gdk-pixbuf meson ninja pkg-config
- run: meson setup build
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/msys2.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
name: WebP Pixbuf CI [MSYS2]
'on':

on:
push:
branches:
- mainline
pull_request:
branches:
- mainline

jobs:
build:
runs-on: windows-latest
Expand All @@ -18,7 +20,7 @@ jobs:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: msys2/setup-msys2@v2
with:
msystem: ${{matrix.sys}}
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
name: WebP Pixbuf CI [Ubuntu]
'on':

on:
push:
branches:
- mainline
pull_request:
branches:
- mainline

jobs:
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- run: sudo apt update
- run: sudo apt install ninja-build meson libwebp-dev libgdk-pixbuf2.0-dev valgrind
- run: mkdir build
Expand Down

0 comments on commit 481533d

Please sign in to comment.