From 6efd0fc1453bc19340f9399b1c4472d6775af6ea Mon Sep 17 00:00:00 2001 From: Ahmad Ansori Palembani <46041660+null2264@users.noreply.github.com> Date: Fri, 12 Jul 2024 08:34:30 +0700 Subject: [PATCH] ci: Resolve deprecation warning (#181) --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7d59b95..8522a92 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,7 +7,7 @@ jobs: runs-on: macos-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: Checkout submodules run: git submodule update --init --recursive - name: Clone Acidanthera/MacKernelSDK @@ -15,7 +15,7 @@ jobs: - name: get shortsha id: vars run: | - echo ::set-output name=sha_short::$(git rev-parse --short=8 ${{ github.sha }}) + echo "sha_short=$(git rev-parse --short=8 ${{ github.sha }})" >> $GITHUB_OUTPUT - name: build env: VOODOORMI_SHA: VoodooRMI-${{ steps.vars.outputs.sha_short }} @@ -23,7 +23,7 @@ jobs: mkdir -p build/${VOODOORMI_SHA}/{Debug,Release} xcodebuild -configuration Debug -scheme VoodooRMI -derivedDataPath build clean build xcodebuild -configuration Release -scheme VoodooRMI -derivedDataPath build build - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: VoodooRMI path: build/Build/Products/*/*.zip