summaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2024-01-15 01:28:29 +0100
committerGravatar Nikias Bassen2024-01-15 01:28:29 +0100
commit0207cfc188885bf2075c7c2c7da7a852e8caca03 (patch)
tree9a56ad36e86971da56843ec198fd7f450044545b /.github/workflows
parentb9cfe0b264f66eab9ad88e11eb6b0523cb1de911 (diff)
downloadideviceinstaller-0207cfc188885bf2075c7c2c7da7a852e8caca03.tar.gz
ideviceinstaller-0207cfc188885bf2075c7c2c7da7a852e8caca03.tar.bz2
[github-actions] Update checkout and upload-artifact actions to v3
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build.yml12
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index ffff6db..f5d336e 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -50,7 +50,7 @@ jobs:
50 rm -rf extract/lib 50 rm -rf extract/lib
51 sudo cp -r extract/* / 51 sudo cp -r extract/* /
52 sudo ldconfig 52 sudo ldconfig
53 - uses: actions/checkout@v2 53 - uses: actions/checkout@v3
54 with: 54 with:
55 fetch-depth: 0 55 fetch-depth: 0
56 - name: autogen 56 - name: autogen
@@ -65,7 +65,7 @@ jobs:
65 DESTDIR=`pwd`/dest make install 65 DESTDIR=`pwd`/dest make install
66 tar -C dest -cf ideviceinstaller.tar usr 66 tar -C dest -cf ideviceinstaller.tar usr
67 - name: publish artifact 67 - name: publish artifact
68 uses: actions/upload-artifact@v2 68 uses: actions/upload-artifact@v3
69 with: 69 with:
70 name: ideviceinstaller-latest_${{env.target_triplet}} 70 name: ideviceinstaller-latest_${{env.target_triplet}}
71 path: ideviceinstaller.tar 71 path: ideviceinstaller.tar
@@ -115,7 +115,7 @@ jobs:
115 tar -C extract -xvf $I 115 tar -C extract -xvf $I
116 done 116 done
117 sudo cp -r extract/* / 117 sudo cp -r extract/* /
118 - uses: actions/checkout@v2 118 - uses: actions/checkout@v3
119 - name: install additional requirements 119 - name: install additional requirements
120 run: | 120 run: |
121 SDKDIR=`xcrun --sdk macosx --show-sdk-path 2>/dev/null` 121 SDKDIR=`xcrun --sdk macosx --show-sdk-path 2>/dev/null`
@@ -166,7 +166,7 @@ jobs:
166 DESTDIR=`pwd`/dest make install 166 DESTDIR=`pwd`/dest make install
167 tar -C dest -cf ideviceinstaller.tar usr 167 tar -C dest -cf ideviceinstaller.tar usr
168 - name: publish artifact 168 - name: publish artifact
169 uses: actions/upload-artifact@v2 169 uses: actions/upload-artifact@v3
170 with: 170 with:
171 name: ideviceinstaller-latest_macOS 171 name: ideviceinstaller-latest_macOS
172 path: ideviceinstaller.tar 172 path: ideviceinstaller.tar
@@ -237,7 +237,7 @@ jobs:
237 tar -C extract -xvf $I 237 tar -C extract -xvf $I
238 done 238 done
239 cp -r extract/* / 239 cp -r extract/* /
240 - uses: actions/checkout@v2 240 - uses: actions/checkout@v3
241 - name: install additional requirements 241 - name: install additional requirements
242 run: | 242 run: |
243 FILENAME="libzip-1.7.1-static.tar.bz2" 243 FILENAME="libzip-1.7.1-static.tar.bz2"
@@ -259,7 +259,7 @@ jobs:
259 DESTDIR=`pwd`/dest make install 259 DESTDIR=`pwd`/dest make install
260 tar -C dest -cf ideviceinstaller.tar ${{ env.dest }} 260 tar -C dest -cf ideviceinstaller.tar ${{ env.dest }}
261 - name: publish artifact 261 - name: publish artifact
262 uses: actions/upload-artifact@v2 262 uses: actions/upload-artifact@v3
263 with: 263 with:
264 name: ideviceinstaller-latest_${{ matrix.arch }}-${{ env.dest }} 264 name: ideviceinstaller-latest_${{ matrix.arch }}-${{ env.dest }}
265 path: ideviceinstaller.tar 265 path: ideviceinstaller.tar