Skip to content

Commit

Permalink
[github-actions] Update checkout and upload-artifact actions to v3
Browse files Browse the repository at this point in the history
  • Loading branch information
nikias committed Jan 15, 2024
1 parent b9cfe0b commit 0207cfc
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
rm -rf extract/lib
sudo cp -r extract/* /
sudo ldconfig
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: autogen
Expand All @@ -65,7 +65,7 @@ jobs:
DESTDIR=`pwd`/dest make install
tar -C dest -cf ideviceinstaller.tar usr
- name: publish artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: ideviceinstaller-latest_${{env.target_triplet}}
path: ideviceinstaller.tar
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
tar -C extract -xvf $I
done
sudo cp -r extract/* /
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: install additional requirements
run: |
SDKDIR=`xcrun --sdk macosx --show-sdk-path 2>/dev/null`
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:
DESTDIR=`pwd`/dest make install
tar -C dest -cf ideviceinstaller.tar usr
- name: publish artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: ideviceinstaller-latest_macOS
path: ideviceinstaller.tar
Expand Down Expand Up @@ -237,7 +237,7 @@ jobs:
tar -C extract -xvf $I
done
cp -r extract/* /
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: install additional requirements
run: |
FILENAME="libzip-1.7.1-static.tar.bz2"
Expand All @@ -259,7 +259,7 @@ jobs:
DESTDIR=`pwd`/dest make install
tar -C dest -cf ideviceinstaller.tar ${{ env.dest }}
- name: publish artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: ideviceinstaller-latest_${{ matrix.arch }}-${{ env.dest }}
path: ideviceinstaller.tar

0 comments on commit 0207cfc

Please sign in to comment.