Skip to content

Commit

Permalink
Upgrade GitHub Actions (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
kpavlov committed Jul 2, 2022
1 parent faeaff9 commit 0ac4ca7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/detekt-analysis.yml
Expand Up @@ -40,7 +40,7 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# Gets the download URL associated with the $DETEKT_RELEASE_TAG
- name: Get Detekt download URL
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/gradle-publish.yml
Expand Up @@ -20,9 +20,9 @@ jobs:
packages: write

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'zulu'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/gradle.yml
Expand Up @@ -29,13 +29,13 @@ jobs:

steps:
- name: Checkout github repo (+ download lfs dependencies)
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
lfs: true
- name: Checkout LFS objects
run: git lfs checkout
- name: Set up JDK
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: 'zulu'
Expand All @@ -48,7 +48,7 @@ jobs:
gradle-version: wrapper
arguments: check build --stacktrace
- name: Publish Test Report
uses: mikepenz/action-junit-report@v2
uses: mikepenz/action-junit-report@v3
if: always()
with:
report_paths: '**/build/test-results/test/TEST-*.xml'
Expand Down

0 comments on commit 0ac4ca7

Please sign in to comment.