Skip to content

Bump the all-dependencies group across 1 directory with 16 updates #740

Bump the all-dependencies group across 1 directory with 16 updates

Bump the all-dependencies group across 1 directory with 16 updates #740

Workflow file for this run

name: PR build
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle.kts') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Install Java 21
uses: actions/setup-java@v4
with:
java-version: 21
distribution: temurin
- name: test and build
run: ./gradlew test build
env:
ORG_GRADLE_PROJECT_githubUser: x-access-token
ORG_GRADLE_PROJECT_githubPassword: ${{ secrets.GITHUB_TOKEN }}
- name: build docker image
run: docker build . --pull