Skip to content

Commit

Permalink
Merge 3f227b1 into 19b73fa
Browse files Browse the repository at this point in the history
  • Loading branch information
musketyr committed May 17, 2022
2 parents 19b73fa + 3f227b1 commit 5c73e7f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 12 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/gradle-versions-watchdog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,12 @@ jobs:
steps:
- uses: actions/checkout@v1

- name: Set up JDK 1.8
uses: actions/setup-java@v1
- name: Setup Java 8
uses: actions/setup-java@v3
with:
java-version: 1.8
distribution: corretto
java-version: 8
cache: gradle
- uses: eskatos/gradle-command-action@v1
with:
arguments: check --stacktrace
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,12 @@ jobs:
- 'migrateImports check -PmicronautVersion=3.2.1 -PspockVersion=2.0-groovy-3.0 -PgroovyVersion=3.0.9 --scan'
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
- name: Setup Java 8
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: zulu
cache: 'gradle'
distribution: corretto
java-version: 8
cache: gradle
- uses: eskatos/gradle-command-action@v2
with:
arguments: ${{ matrix.versions }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }}
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v2
- name: Setup Java 8
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: zulu
cache: 'gradle'
distribution: corretto
java-version: 8
cache: gradle
- name: Semantic Version
id: version
uses: ncipollo/semantic-version-action@v1
Expand Down

0 comments on commit 5c73e7f

Please sign in to comment.