Skip to content

Commit 6a80a80

Browse files
authored
chore(deps-dev): update gh runner (#256)
1 parent b8fdbb7 commit 6a80a80

4 files changed

Lines changed: 24 additions & 24 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ name: CI
22

33
on:
44
pull_request:
5-
branches: [ main ]
5+
branches: [main]
66
push:
7-
branches: [ main ]
7+
branches: [main]
88

99
jobs:
1010
build:
1111
name: Build
12-
runs-on: ubuntu-20.04
12+
runs-on: ubuntu-24.04
1313
strategy:
1414
matrix:
1515
java-version: [8, 11, 17]
@@ -22,7 +22,7 @@ jobs:
2222
uses: actions/setup-java@v4
2323
with:
2424
distribution: zulu
25-
java-version: '${{ matrix.java-version }}'
25+
java-version: "${{ matrix.java-version }}"
2626

2727
- name: Clean build directory
2828
run: ./gradlew clean
@@ -32,7 +32,7 @@ jobs:
3232

3333
lint:
3434
name: Lint
35-
runs-on: ubuntu-20.04
35+
runs-on: ubuntu-24.04
3636

3737
steps:
3838
- name: Checkout repository

.github/workflows/codeql-analysis.yml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@ name: "CodeQL"
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [main]
66
pull_request:
77
# The branches below must be a subset of the branches above
8-
branches: [ main ]
8+
branches: [main]
99
schedule:
10-
- cron: '15 18 * * 5'
10+
- cron: "15 18 * * 5"
1111

1212
jobs:
1313
analyze:
1414
name: Analyze
15-
runs-on: ubuntu-20.04
15+
runs-on: ubuntu-24.04
1616
permissions:
1717
actions: read
1818
contents: read
@@ -21,20 +21,20 @@ jobs:
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
language: [ 'java' ]
24+
language: ["java"]
2525

2626
steps:
27-
- name: Checkout repository
28-
uses: actions/checkout@v4
27+
- name: Checkout repository
28+
uses: actions/checkout@v4
2929

30-
# Initializes the CodeQL tools for scanning.
31-
- name: Initialize CodeQL
32-
uses: github/codeql-action/init@v3
33-
with:
34-
languages: ${{ matrix.language }}
30+
# Initializes the CodeQL tools for scanning.
31+
- name: Initialize CodeQL
32+
uses: github/codeql-action/init@v3
33+
with:
34+
languages: ${{ matrix.language }}
3535

36-
- name: Autobuild
37-
uses: github/codeql-action/autobuild@v3
36+
- name: Autobuild
37+
uses: github/codeql-action/autobuild@v3
3838

39-
- name: Perform CodeQL Analysis
40-
uses: github/codeql-action/analyze@v3
39+
- name: Perform CodeQL Analysis
40+
uses: github/codeql-action/analyze@v3

.github/workflows/pr-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
check-title:
1313
if: ${{ github.event.pull_request.user.login != 'dependabot[bot]' }}
1414
name: Check title
15-
runs-on: ubuntu-20.04
15+
runs-on: ubuntu-24.04
1616

1717
steps:
1818
- uses: naveenk1223/action-pr-title@v1.0.0

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
deploy:
99
name: Deploy to package index
10-
runs-on: ubuntu-20.04
10+
runs-on: ubuntu-24.04
1111
env:
1212
MAVEN_SNAPSHOTS_URL: ${{ secrets.OSSRH_SNAPSHOT_URL }}
1313
MAVEN_RELEASES_URL: ${{ secrets.OSSRH_RELEASE_URL }}
@@ -22,7 +22,7 @@ jobs:
2222
uses: actions/setup-java@v4
2323
with:
2424
distribution: zulu
25-
java-version: '8'
25+
java-version: "8"
2626

2727
- name: Decode signing key ring
2828
run: |

0 commit comments

Comments
 (0)