Skip to content

Commit e3f37e9

Browse files
committed
Update. Add github actions
1 parent f35f76c commit e3f37e9

4 files changed

Lines changed: 19 additions & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
on:
2+
push:
3+
pull_request:
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v6
10+
- uses: sbt/setup-sbt@v1
11+
- uses: actions/setup-java@v5
12+
with:
13+
java-version: '17'
14+
distribution: 'adopt'
15+
- run: sbt test

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name := "gitbucket-announce-plugin"
22
organization := "fr.brouillard.gitbucket"
33
version := "1.14.0"
4-
scalaVersion := "2.13.5"
5-
gitbucketVersion := "4.35.3"
4+
scalaVersion := "2.13.18"
5+
gitbucketVersion := "4.45.0"
66
scalacOptions += "-deprecation"

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version = 1.5.0
1+
sbt.version = 1.12.0

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
addSbtPlugin("io.github.gitbucket" % "sbt-gitbucket-plugin" % "1.5.1")
1+
addSbtPlugin("io.github.gitbucket" % "sbt-gitbucket-plugin" % "1.6.0")

0 commit comments

Comments
 (0)