Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"
18 changes: 10 additions & 8 deletions .github/workflows/default.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Build SmoothTimber

on: [push]
on:
push:
pull_request:

jobs:
compile:
Expand All @@ -10,9 +12,9 @@ jobs:
java: [ 21 ]
name: Java ${{ matrix.java }} compile
steps:
- uses: actions/checkout@master
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 #v5.0.0
- name: Setup java
uses: actions/setup-java@v2
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 #v5.0.0
with:
distribution: 'adopt'
java-version: ${{ matrix.java }}
Expand All @@ -22,22 +24,22 @@ jobs:
needs: compile
name: Build Maven project
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 #v5.0.0
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 #v4.3.0
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Set up JDK 21
uses: actions/setup-java@v2
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 #v5.0.0
with:
distribution: 'adopt'
java-version: 21
- name: Build and test project
run: mvn clean verify
- name: Upload Maven build artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 #v4.6.2
with:
name: SmoothTimber-Artifact
path: target/SmoothTimber-*.jar
path: target/smoothtimber-*.jar
38 changes: 0 additions & 38 deletions .github/workflows/pullrequest.yml

This file was deleted.

2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@
<dependency>
<groupId>me.clip</groupId>
<artifactId>placeholderapi</artifactId>
<version>2.10.9</version>
<version>2.11.5</version>
<scope>provided</scope>
</dependency>

Expand Down