Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,24 +24,23 @@ jobs:

steps:
# https://github.com/actions/checkout
- name: Checkout repository
- name: Checkout Git repository
uses: actions/checkout@v6.0.2

# https://github.com/actions/setup-java
- name: Set up JDK 17
- name: Setup JDK 17
uses: actions/setup-java@v5.2.0
with:
distribution: 'temurin'
java-version: '17'
distribution: temurin
java-version: 17
java-package: jdk
architecture: x64
cache: gradle

# https://github.com/github/codeql-action
- name: Initialize CodeQL
uses: github/codeql-action/init@v4.32.5
with:
languages: 'java'
languages: java

# https://github.com/github/codeql-action
- name: Autobuild
Expand Down
22 changes: 10 additions & 12 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build Gradle
name: Gradle


on:
Expand All @@ -17,37 +17,35 @@ jobs:

steps:
# https://github.com/actions/checkout
- name: Check out Git repository
- name: Checkout Git repository
uses: actions/checkout@v6.0.2

# https://github.com/actions/cache
- name: Cache Gradle
uses: actions/cache@v5.0.3
with:
path: |
~/.m2
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-

# https://github.com/gradle/wrapper-validation-action
- name: Wrapper validation
uses: gradle/actions/wrapper-validation@v5.0.2
restore-keys: ${{ runner.os }}-gradle-

# https://github.com/gradle/gradle-build-action
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v5.0.2
with:
gradle-version: wrapper
cache-overwrite-existing: true

# https://github.com/actions/setup-java
- name: Set up JDK 17
- name: Setup JDK 17
uses: actions/setup-java@v5.2.0
with:
distribution: 'temurin'
java-version: '17'
distribution: temurin
java-version: 17
java-package: jdk
architecture: x64
cache: gradle

- name: Configure Git
run: git config --global user.name "Github Actions" && git config --global user.email "actions@github.com"
Expand Down
Loading