Skip to content

Commit e6f4c68

Browse files
authored
Update GitHub actions to v4 and upload-release-action to v2
1 parent d2fe4fc commit e6f4c68

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/main.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ jobs:
1717
env:
1818
JOB_TYPE: BUILD
1919
steps:
20-
- uses: actions/checkout@v3
21-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v4
2222
with:
2323
repository: acidanthera/MacKernelSDK
2424
path: MacKernelSDK
@@ -33,13 +33,13 @@ jobs:
3333
- run: xcodebuild -jobs 1 -configuration Release
3434

3535
- name: Upload to Artifacts
36-
uses: actions/upload-artifact@v3
36+
uses: actions/upload-artifact@v4
3737
with:
3838
name: Artifacts
3939
path: build/*/*.zip
4040
- name: Upload to Release
4141
if: github.event_name == 'release'
42-
uses: svenstaro/upload-release-action@e74ff71f7d8a4c4745b560a485cc5fdb9b5b999d
42+
uses: svenstaro/upload-release-action@v2
4343
with:
4444
repo_token: ${{ secrets.GITHUB_TOKEN }}
4545
file: build/*/*.zip
@@ -52,8 +52,8 @@ jobs:
5252
env:
5353
JOB_TYPE: ANALYZE
5454
steps:
55-
- uses: actions/checkout@v3
56-
- uses: actions/checkout@v3
55+
- uses: actions/checkout@v4
56+
- uses: actions/checkout@v4
5757
with:
5858
repository: acidanthera/MacKernelSDK
5959
path: MacKernelSDK
@@ -74,8 +74,8 @@ jobs:
7474
JOB_TYPE: COVERITY
7575
if: github.repository_owner == 'acidanthera' && github.event_name != 'pull_request'
7676
steps:
77-
- uses: actions/checkout@v3
78-
- uses: actions/checkout@v3
77+
- uses: actions/checkout@v4
78+
- uses: actions/checkout@v4
7979
with:
8080
repository: acidanthera/MacKernelSDK
8181
path: MacKernelSDK

0 commit comments

Comments
 (0)