Skip to content

Commit

Permalink
GitHub Actions please use Java 21
Browse files Browse the repository at this point in the history
  • Loading branch information
FoundationGames committed Jun 5, 2024
1 parent ba3c502 commit 27b5c82
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
build:
strategy:
matrix:
java: [17]
java: [21]
os: [ubuntu-20.04, windows-latest]
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -23,7 +23,7 @@ jobs:
- name: build
run: ./gradlew build
- name: capture build artifacts
if: ${{ runner.os == 'Linux' && matrix.java == '17' }}
if: ${{ runner.os == 'Linux' && matrix.java == '21' }}
uses: actions/upload-artifact@v2
with:
name: Artifacts
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ protected void init() {
super.init();

this.optionsWidget = new WidgetRowListWidget(this.client, this.width, this.height - 69, 34, 316, 20);
//this.optionsWidget.bac
this.options.clear();

addOptions();
Expand Down

0 comments on commit 27b5c82

Please sign in to comment.