From 72124c1d0558651e2ad931d0ff9c76ad38be133e Mon Sep 17 00:00:00 2001 From: PMheart <17109513+PMheart@users.noreply.github.com> Date: Mon, 25 Apr 2022 12:06:42 +0200 Subject: [PATCH] Update to GitHub Actions v3 --- .github/workflows/main.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 07cf820..a4dddd0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -17,8 +17,8 @@ jobs: env: JOB_TYPE: BUILD steps: - - uses: actions/checkout@v2 - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 + - uses: actions/checkout@v3 with: repository: acidanthera/MacKernelSDK path: MacKernelSDK @@ -33,7 +33,7 @@ jobs: - run: xcodebuild -jobs 1 -configuration Release - name: Upload to Artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: Artifacts path: build/*/*.zip @@ -52,8 +52,8 @@ jobs: env: JOB_TYPE: ANALYZE steps: - - uses: actions/checkout@v2 - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 + - uses: actions/checkout@v3 with: repository: acidanthera/MacKernelSDK path: MacKernelSDK @@ -74,8 +74,8 @@ jobs: JOB_TYPE: COVERITY if: github.repository_owner == 'acidanthera' && github.event_name != 'pull_request' steps: - - uses: actions/checkout@v2 - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 + - uses: actions/checkout@v3 with: repository: acidanthera/MacKernelSDK path: MacKernelSDK