Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: Resolve Backend Deprecation Warnings #917 #918

Merged
merged 15 commits into from
Jan 31, 2025
Prev Previous commit
Next Next commit
test
Dan1elBox committed Jan 31, 2025
commit 97cea98edba4536c9335e9caba69196c36352c28
9 changes: 6 additions & 3 deletions .github/workflows/backend.yaml
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ env:
jobs:
formatting:
name: Formatting
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- name: Checkout
if: github.event_name != 'pull_request'
@@ -30,6 +30,7 @@ jobs:
with:
java-version: ${{ env.JAVA_VERSION }}
distribution: 'adopt'
check-latest: true
- name: Format
if: (github.event.pull_request.head.repo.full_name == github.repository) && (github.actor != 'dependabot[bot]')
uses: axel-op/googlejavaformat-action@v3
@@ -48,7 +49,7 @@ jobs:

build:
name: Build
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
@@ -57,6 +58,7 @@ jobs:
with:
java-version: ${{ env.JAVA_VERSION }}
distribution: 'adopt'
check-latest: true
- name: Package server
uses: gradle/gradle-build-action@v2
with:
@@ -71,7 +73,7 @@ jobs:

test:
name: Test
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
permissions:
checks: write
contents: read
@@ -83,6 +85,7 @@ jobs:
with:
java-version: ${{ env.JAVA_VERSION }}
distribution: 'adopt'
check-latest: true
- name: Run unit tests
uses: gradle/gradle-build-action@v2
with: