Skip to content

Commit

Permalink
ci: update semantic-release and checkout GitHub action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
nickmcdowall committed Mar 11, 2023
1 parent 876d0b4 commit a8a6073
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
Expand All @@ -18,9 +18,11 @@ jobs:
- name: Build with Gradle
run: ./gradlew build
- uses: actions/upload-artifact@v2
if: always()
with:
name: build-directory
path: build
retention-days: 30
name: build-reports
path: build/reports
- uses: codecov/codecov-action@v1
with:
files: build/reports/jacoco/test/jacocoTestReport.xml
Expand All @@ -30,9 +32,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v2
uses: cycjimmy/semantic-release-action@v3
id: semantic
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit a8a6073

Please sign in to comment.