Skip to content

Commit

Permalink
update gradle plugin version (#384)
Browse files Browse the repository at this point in the history
* update gradle plugin version

* account for github deleting credentials
  • Loading branch information
Foxcapades authored Mar 6, 2025
1 parent 77ea649 commit dba237c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
18 changes: 11 additions & 7 deletions .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,16 @@ jobs:
name: Pull Request Build Verification
runs-on: ubuntu-latest
steps:
- name: Git Checkout
uses: actions/checkout@v4
- name: Init Java 21
uses: actions/setup-java@v4
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'corretto'
java-version: '21'
- name: Gradle Build
run: ./gradlew build test --no-daemon
distribution: corretto
- uses: gradle/actions/setup-gradle@v4
with:
cache-read-only: false
- name: Build
run: ./gradlew --no-daemon clean build test
env:
GITHUB_USERNAME: ${{ secrets.GH_USERNAME }}
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
2 changes: 1 addition & 1 deletion service/rest-service/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import org.veupathdb.lib.gradle.container.util.Logger.Level

plugins {
kotlin("jvm")
id("org.veupathdb.lib.gradle.container.container-utils") version "5.0.4"
id("org.veupathdb.lib.gradle.container.container-utils") version "5.0.5"
}

// configure VEupathDB container plugin
Expand Down

0 comments on commit dba237c

Please sign in to comment.