diff options
author | 2024-11-15 21:58:24 +0100 | |
---|---|---|
committer | 2024-11-15 21:58:24 +0100 | |
commit | c4ab3d64bd589d52804b6a2974a000138046fff7 (patch) | |
tree | 50ad9e6ee20efd9b83f6376a71f242217a95972a | |
parent | 2cfe20724872c9ed1db037268fd85f23fbce94a2 (diff) | |
download | ifuse-c4ab3d64bd589d52804b6a2974a000138046fff7.tar.gz ifuse-c4ab3d64bd589d52804b6a2974a000138046fff7.tar.bz2 |
[github-actions] Updated build workflow
-rw-r--r-- | .github/workflows/build.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6abef7b..0d756ac 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,33 +9,33 @@ jobs: - name: install dependencies run: | sudo apt-get update - sudo apt-get install libfuse-dev + sudo apt-get install libfuse3-dev - name: prepare environment run: | echo "target_triplet=`gcc -dumpmachine`" >> $GITHUB_ENV - name: fetch libplist - uses: dawidd6/action-download-artifact@v2 + uses: dawidd6/action-download-artifact@v3 with: github_token: ${{secrets.GITHUB_TOKEN}} workflow: build.yml name: libplist-latest_${{env.target_triplet}} repo: libimobiledevice/libplist - name: fetch libusbmuxd - uses: dawidd6/action-download-artifact@v2 + uses: dawidd6/action-download-artifact@v3 with: github_token: ${{secrets.GITHUB_TOKEN}} workflow: build.yml name: libusbmuxd-latest_${{env.target_triplet}} repo: libimobiledevice/libusbmuxd - name: fetch libimobiledevice-glue - uses: dawidd6/action-download-artifact@v2 + uses: dawidd6/action-download-artifact@v3 with: github_token: ${{secrets.GITHUB_TOKEN}} workflow: build.yml name: libimobiledevice-glue-latest_${{env.target_triplet}} repo: libimobiledevice/libimobiledevice-glue - name: fetch libimobiledevice - uses: dawidd6/action-download-artifact@v2 + uses: dawidd6/action-download-artifact@v3 with: github_token: ${{secrets.GITHUB_TOKEN}} workflow: build.yml @@ -50,7 +50,7 @@ jobs: rm -rf extract/lib sudo cp -r extract/* / sudo ldconfig - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: fetch-depth: 0 - name: autogen |