From 8ee0c0d8dec2445c88e6a6a32c7267b78a91af2b Mon Sep 17 00:00:00 2001 From: Serhii Prokhorenko Date: Mon, 6 May 2024 14:09:45 +0300 Subject: [PATCH] Update GitHub Actions to v4 --- .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 bc683e1438..c79c946dee 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -18,8 +18,8 @@ jobs: env: JOB_TYPE: BUILD steps: - - uses: actions/checkout@v3 - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 + - uses: actions/checkout@v4 with: repository: acidanthera/MacKernelSDK path: MacKernelSDK @@ -34,7 +34,7 @@ jobs: - run: xcodebuild -jobs 1 -configuration Release -arch ACID32 -arch x86_64 - name: Upload to Artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: Artifacts path: build/*/*.zip @@ -53,8 +53,8 @@ jobs: env: JOB_TYPE: ANALYZE steps: - - uses: actions/checkout@v3 - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 + - uses: actions/checkout@v4 with: repository: acidanthera/MacKernelSDK path: MacKernelSDK @@ -75,8 +75,8 @@ jobs: JOB_TYPE: COVERITY if: github.repository_owner == 'acidanthera' && github.event_name != 'pull_request' steps: - - uses: actions/checkout@v3 - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 + - uses: actions/checkout@v4 with: repository: acidanthera/MacKernelSDK path: MacKernelSDK