Skip to content

Commit

Permalink
Update GitHub Actions to v4 and Switch to macOS 12 from latest, which…
Browse files Browse the repository at this point in the history
… is now macOS 14
  • Loading branch information
vandroiy2013 authored May 6, 2024
1 parent 3f63693 commit 15f6aae
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ env:
jobs:
build:
name: Build
runs-on: macos-latest
runs-on: macos-12
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
Expand All @@ -30,7 +30,7 @@ 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
Expand All @@ -45,12 +45,12 @@ jobs:

analyze-clang:
name: Analyze Clang
runs-on: macos-latest
runs-on: macos-12
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
Expand All @@ -63,13 +63,13 @@ jobs:

analyze-coverity:
name: Analyze Coverity
runs-on: macos-latest
runs-on: macos-12
env:
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
Expand Down

0 comments on commit 15f6aae

Please sign in to comment.