Skip to content

Commit

Permalink
Update deps and bump version
Browse files Browse the repository at this point in the history
Switch master branch to main
  • Loading branch information
mmanes committed Jun 5, 2024
1 parent b78ca85 commit c0b92ab
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: test

# Run the tests when code is pushed to `master`
# Run the tests when code is pushed to `main`
on:
push:
branches: [ master ]
branches: [ main ]

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

steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
Expand All @@ -23,9 +23,9 @@ jobs:
mkdir -p ~/dev/savant
mkdir -p ~/.savant/plugins
cd ~/dev/savant
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
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
tar -xzf savant.tar.gz
ln -s savant-2.0.0-RC.6 current
ln -s savant-2.0.0-RC.7 current
rm savant.tar.gz
cat <<EOF > ~/.savant/plugins/org.savantbuild.plugin.java.properties
17=${JAVA_HOME_17_X64}
Expand All @@ -38,7 +38,7 @@ jobs:
shell: bash
- name: Archive TestNG reports
if: failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: testng-reports
path: build/test-reports
Expand Down
8 changes: 4 additions & 4 deletions build.savant
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
* language governing permissions and limitations under the License.
*/
jackson5Version = "3.0.1"
restifyVersion = "4.2.1"
testngVersion = "7.8.0"
restifyVersion = "4.2.1"
testngVersion = "7.10.2"

project(group: "io.fusionauth", name: "java-http", version: "0.3.4", licenses: ["ApacheV2_0"]) {
project(group: "io.fusionauth", name: "java-http", version: "0.3.5", licenses: ["ApacheV2_0"]) {
workflow {
fetch {
// Dependency resolution order:
Expand Down Expand Up @@ -54,7 +54,7 @@ project(group: "io.fusionauth", name: "java-http", version: "0.3.4", licenses: [
}

// Plugins
dependency = loadPlugin(id: "org.savantbuild.plugin:dependency:2.0.0-RC.6")
dependency = loadPlugin(id: "org.savantbuild.plugin:dependency:2.0.0-RC.7")
java = loadPlugin(id: "org.savantbuild.plugin:java:2.0.0-RC.6")
javaTestNG = loadPlugin(id: "org.savantbuild.plugin:java-testng:2.0.0-RC.6")
idea = loadPlugin(id: "org.savantbuild.plugin:idea:2.0.0-RC.7")
Expand Down

0 comments on commit c0b92ab

Please sign in to comment.