Skip to content

Commit

Permalink
Update to GitHub Actions v3
Browse files Browse the repository at this point in the history
  • Loading branch information
PMheart committed Apr 25, 2022
1 parent 5264607 commit 3d87f29
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
env:
JOB_TYPE: BUILD
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Install Dependencies
run: brew install create-dmg
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:

- name: Upload to Artifacts
if: github.repository_owner == 'acidanthera' && github.event_name != 'pull_request'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: Artifacts
path: build/*/*.dmg
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
env:
JOB_TYPE: ANALYZE
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: CI Bootstrap
run: |
src=$(/usr/bin/curl -Lfs https://raw.githubusercontent.com/acidanthera/ocbuild/master/ci-bootstrap.sh) && eval "$src" || exit 1
Expand All @@ -118,7 +118,7 @@ jobs:
JOB_TYPE: COVERITY
if: github.repository_owner == 'acidanthera' && github.event_name != 'pull_request'
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: CI Bootstrap
run: |
src=$(/usr/bin/curl -Lfs https://raw.githubusercontent.com/acidanthera/ocbuild/master/ci-bootstrap.sh) && eval "$src" || exit 1
Expand Down

0 comments on commit 3d87f29

Please sign in to comment.