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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@ name: CI

on:
pull_request:
branches: [ main ]
branches: [main]
push:
branches: [ main ]
branches: [main]

jobs:
build:
name: Build
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
strategy:
matrix:
java-version: [ 8, 11, 17 ]
java-version: [8, 11, 17]

steps:
- name: Checkout repository
Expand All @@ -22,7 +22,7 @@ jobs:
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: '${{ matrix.java-version }}'
java-version: "${{ matrix.java-version }}"

- name: Clean build directory
run: ./gradlew clean
Expand All @@ -32,7 +32,7 @@ jobs:

lint:
name: Lint
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04

steps:
- name: Checkout repository
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@ name: "CodeQL"

on:
push:
branches: [ main ]
branches: [main]
pull_request:
# The branches below must be a subset of the branches above
branches: [ main ]
branches: [main]
schedule:
- cron: '15 18 * * 5'
- cron: "15 18 * * 5"

jobs:
analyze:
name: Analyze
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
permissions:
actions: read
contents: read
Expand All @@ -21,7 +21,7 @@ jobs:
strategy:
fail-fast: false
matrix:
language: [ 'java' ]
language: ["java"]

steps:
- name: Checkout repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
check-title:
if: ${{ github.event.pull_request.user.login != 'dependabot[bot]' }}
name: Check title
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04

steps:
- uses: naveenk1223/[email protected]
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ name: Publish

on:
release:
types: [ published ]
types: [published]

jobs:
deploy:
name: Deploy to package index
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
env:
MAVEN_SNAPSHOTS_URL: ${{ vars.OSSRH_SNAPSHOT_URL }}
MAVEN_RELEASES_URL: ${{ vars.OSSRH_RELEASE_URL }}
Expand All @@ -22,7 +22,7 @@ jobs:
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: '8'
java-version: "8"

- name: Decode signing key ring
run: |
Expand Down