Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ jobs:
env:
JOB_TYPE: BUILD
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3
- uses: actions/checkout@v5
- uses: actions/checkout@v5
with:
repository: acidanthera/MacKernelSDK
path: MacKernelSDK
Expand All @@ -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@81c65b7cd4de9b2570615ce3aad67a41de5b1a13
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: build/*/*/*.zip
Expand All @@ -52,8 +52,8 @@ jobs:
env:
JOB_TYPE: ANALYZE
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3
- uses: actions/checkout@v5
- uses: actions/checkout@v5
with:
repository: acidanthera/MacKernelSDK
path: MacKernelSDK
Expand All @@ -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@v5
- uses: actions/checkout@v5
with:
repository: acidanthera/MacKernelSDK
path: MacKernelSDK
Expand Down