From 3cfdc566a7635b610f9ba335a56d9983d7b98a28 Mon Sep 17 00:00:00 2001 From: Serhii Prokhorenko Date: Mon, 5 Aug 2024 18:11:50 +0300 Subject: [PATCH] Update GitHub actions to v4 and upload-release-action to v2 --- .github/workflows/main.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 80ae5c0..c275b82 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -17,8 +17,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 @@ -33,13 +33,13 @@ jobs: - run: xcodebuild -jobs 1 -configuration Release - name: Upload to Artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: Artifacts path: build/*/*.zip - name: Upload to Release if: github.event_name == 'release' - uses: svenstaro/upload-release-action@e74ff71f7d8a4c4745b560a485cc5fdb9b5b999d + uses: svenstaro/upload-release-action@v2 with: repo_token: ${{ secrets.GITHUB_TOKEN }} file: build/*/*.zip @@ -52,8 +52,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 @@ -74,8 +74,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