diff --git a/.github/workflows/build-app-wxpython.yml b/.github/workflows/build-app-wxpython.yml index dec35cbb5..8f3dc2acf 100644 --- a/.github/workflows/build-app-wxpython.yml +++ b/.github/workflows/build-app-wxpython.yml @@ -15,7 +15,7 @@ jobs: commiturl: ${{ github.event.head_commit.url }} commitdate: ${{ github.event.head_commit.timestamp }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - run: python3 create_offline_build.py - run: /Library/Frameworks/Python.framework/Versions/3.9/bin/pyinstaller OpenCore-Patcher-GUI.spec - run: python3 ./payloads/binary.py $branch $commiturl $commitdate @@ -25,12 +25,12 @@ jobs: - run: packagesbuild ./payloads/InstallPackage/AutoPkg-Assets-Setup.pkgproj - run: mv ./OpenCore-Patcher-wxPython.app.zip ./OpenCore-Patcher-GUI.app.zip - name: Upload App to Artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: OpenCore-Patcher.app (GUI) path: OpenCore-Patcher-GUI.app.zip - name: Upload Package to Artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: AutoPkg-Assets.pkg path: ./dist/AutoPkg-Assets.pkg diff --git a/.github/workflows/build-app.yml b/.github/workflows/build-app.yml index 5dc25b41d..226203808 100644 --- a/.github/workflows/build-app.yml +++ b/.github/workflows/build-app.yml @@ -15,7 +15,7 @@ jobs: commiturl: ${{ github.event.head_commit.url }} commitdate: ${{ github.event.head_commit.timestamp }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - run: python3 create_offline_build.py - run: /Library/Frameworks/Python.framework/Versions/3.9/bin/pyinstaller OpenCore-Patcher.spec - run: python3 ./payloads/binary.py $branch $commiturl $commitdate @@ -24,7 +24,7 @@ jobs: - run: cd dist; zip -r ../OpenCore-Patcher-TUI.app.zip OpenCore-Patcher.app - run: ./../sign-tui.sh - name: Upload App to Artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: OpenCore-Patcher-TUI.app path: OpenCore-Patcher-TUI.app.zip diff --git a/.github/workflows/build-site.yml b/.github/workflows/build-site.yml index 7e3c14596..12ea0c19c 100644 --- a/.github/workflows/build-site.yml +++ b/.github/workflows/build-site.yml @@ -10,11 +10,11 @@ jobs: name: Build Site and Deploy runs-on: ubuntu-latest steps: - - uses: actions/setup-node@v2-beta + - uses: actions/setup-node@v3 with: node-version: '12' - name: Checkout Repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: '0' persist-credentials: false