Skip to content

Commit

Permalink
Fix Attempt 20241230 - Action Fix Attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
Virus5600 committed Dec 30, 2024
1 parent e94c1be commit 0d6b51e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/actions/prep/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,21 @@ description: "Prepare the environment for testing"

inputs:
java:
required: true
required: false
type: number
description: 'Java version to use for testing'
description: 'Java version to use for testing. Defaults to 22.'
default: 22

java_dist:
required: false
type: string
description: 'Java distribution to use for testing. Defaults to "adopt".'
default: 'adopt'

os:
required: true
required: false,
type: string
description: 'Operating system to use for testing'
description: 'Operating system to use for testing. Defaults to "ubuntu-latest".'
default: 'ubuntu-latest'

runs:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/fabric.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
uses: ./.github/actions/prep
with:
java: ${{ matrix.version.java }}
java_dist: temurin
os: ubuntu-latest

- name: Get jar name
Expand Down

0 comments on commit 0d6b51e

Please sign in to comment.