Skip to content

Commit c0b92ab

Browse files
committed
Update deps and bump version
Switch master branch to main
1 parent b78ca85 commit c0b92ab

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: test
22

3-
# Run the tests when code is pushed to `master`
3+
# Run the tests when code is pushed to `main`
44
on:
55
push:
6-
branches: [ master ]
6+
branches: [ main ]
77

88
# Allows you to run this workflow manually from the Actions tab
99
workflow_dispatch:
@@ -13,8 +13,8 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@v3
17-
- uses: actions/setup-java@v3
16+
- uses: actions/checkout@v4
17+
- uses: actions/setup-java@v4
1818
with:
1919
distribution: 'temurin'
2020
java-version: 17
@@ -23,9 +23,9 @@ jobs:
2323
mkdir -p ~/dev/savant
2424
mkdir -p ~/.savant/plugins
2525
cd ~/dev/savant
26-
curl -fSL https://github.com/savant-build/savant-core/releases/download/2.0.0-RC.6/savant-2.0.0-RC.6.tar.gz > savant.tar.gz
26+
curl -fSL https://github.com/savant-build/savant-core/releases/download/2.0.0-RC.7/savant-2.0.0-RC.7.tar.gz > savant.tar.gz
2727
tar -xzf savant.tar.gz
28-
ln -s savant-2.0.0-RC.6 current
28+
ln -s savant-2.0.0-RC.7 current
2929
rm savant.tar.gz
3030
cat <<EOF > ~/.savant/plugins/org.savantbuild.plugin.java.properties
3131
17=${JAVA_HOME_17_X64}
@@ -38,7 +38,7 @@ jobs:
3838
shell: bash
3939
- name: Archive TestNG reports
4040
if: failure()
41-
uses: actions/upload-artifact@v3
41+
uses: actions/upload-artifact@v4
4242
with:
4343
name: testng-reports
4444
path: build/test-reports

build.savant

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
* language governing permissions and limitations under the License.
1515
*/
1616
jackson5Version = "3.0.1"
17-
restifyVersion = "4.2.1"
18-
testngVersion = "7.8.0"
17+
restifyVersion = "4.2.1"
18+
testngVersion = "7.10.2"
1919

20-
project(group: "io.fusionauth", name: "java-http", version: "0.3.4", licenses: ["ApacheV2_0"]) {
20+
project(group: "io.fusionauth", name: "java-http", version: "0.3.5", licenses: ["ApacheV2_0"]) {
2121
workflow {
2222
fetch {
2323
// Dependency resolution order:
@@ -54,7 +54,7 @@ project(group: "io.fusionauth", name: "java-http", version: "0.3.4", licenses: [
5454
}
5555

5656
// Plugins
57-
dependency = loadPlugin(id: "org.savantbuild.plugin:dependency:2.0.0-RC.6")
57+
dependency = loadPlugin(id: "org.savantbuild.plugin:dependency:2.0.0-RC.7")
5858
java = loadPlugin(id: "org.savantbuild.plugin:java:2.0.0-RC.6")
5959
javaTestNG = loadPlugin(id: "org.savantbuild.plugin:java-testng:2.0.0-RC.6")
6060
idea = loadPlugin(id: "org.savantbuild.plugin:idea:2.0.0-RC.7")

0 commit comments

Comments
 (0)