Skip to content

Commit

Permalink
Update build workflow dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
NebelNidas committed Feb 4, 2025
1 parent 4fc5bb6 commit 5264564
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up JDK 17
uses: actions/setup-java@v3
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: "17"
java-version: "21"
distribution: "temurin"

- name: Validate Gradle wrapper
Expand All @@ -22,7 +22,7 @@ jobs:
run: ./gradlew build --stacktrace --warning-mode=fail

- name: Upload build artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: build-artifacts
path: build/libs

0 comments on commit 5264564

Please sign in to comment.