-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into update_workflows
- Loading branch information
Showing
17 changed files
with
323 additions
and
218 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Ensure all Java files use LF. | ||
*.java eol=lf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: Fossa Scan | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '30 18 * * *' # 00:00 in LK time (GMT+5:30) | ||
jobs: | ||
fossa-scan: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: fossas/fossa-action@main | ||
env: | ||
packageUser: ${{ secrets.BALLERINA_BOT_USERNAME }} | ||
packagePAT: ${{ secrets.BALLERINA_BOT_TOKEN }} | ||
with: | ||
api-key: ${{secrets.FOSSA_APIKEY}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,31 @@ | ||
[package] | ||
org = "ballerina" | ||
name = "os" | ||
version = "1.7.0" | ||
version = "1.8.0" | ||
authors = ["Ballerina"] | ||
keywords = ["environment"] | ||
repository = "https://github.com/ballerina-platform/module-ballerina-os" | ||
icon = "icon.png" | ||
license = ["Apache-2.0"] | ||
distribution = "2201.7.0" | ||
distribution = "2201.8.0" | ||
|
||
[platform.java17] | ||
graalvmCompatible = true | ||
|
||
[[platform.java17.dependency]] | ||
groupId = "org.burningwave" | ||
artifactId = "core" | ||
version = "12.62.7" | ||
path = "./lib/core-12.62.7.jar" | ||
|
||
[[platform.java17.dependency]] | ||
groupId = "io.github.toolfactory" | ||
artifactId = "jvm-driver" | ||
version = "9.4.3" | ||
path = "./lib/jvm-driver-9.4.3.jar" | ||
|
||
[[platform.java17.dependency]] | ||
groupId = "io.ballerina.stdlib" | ||
artifactId = "os-native" | ||
version = "1.7.0" | ||
path = "../native/build/libs/os-native-1.7.0.jar" | ||
version = "1.8.0" | ||
path = "../native/build/libs/os-native-1.8.0-SNAPSHOT.jar" | ||
|
||
[[platform.java17.dependency]] | ||
groupId = "io.ballerina.stdlib" | ||
artifactId = "io-native" | ||
version = "1.5.0" | ||
path = "./lib/io-native-1.5.0.jar" | ||
version = "1.6.0" | ||
path = "./lib/io-native-1.6.0-20230810-115500-2e569f5.jar" | ||
|
||
[[platform.java17.dependency]] | ||
groupId = "io.ballerina.stdlib" | ||
artifactId = "os-test-utils" | ||
version = "1.7.0" | ||
path = "../test-utils/build/libs/os-test-utils-1.7.0.jar" | ||
version = "1.8.0" | ||
path = "../test-utils/build/libs/os-test-utils-1.8.0-SNAPSHOT.jar" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,13 @@ | ||
org.gradle.caching=true | ||
group=io.ballerina.stdlib | ||
version=1.7.1-SNAPSHOT | ||
version=1.8.0-SNAPSHOT | ||
|
||
ballerinaGradlePluginVersion=2.0.0 | ||
ballerinaGradlePluginVersion=2.0.1 | ||
githubSpotBugsVersion=5.0.14 | ||
shadowJarVersion=7.1.2 | ||
undercouchDownloadVersion=5.4.0 | ||
researchgateReleaseVersion=2.8.0 | ||
puppycrawlCheckstyleVersion=10.12.0 | ||
|
||
|
||
ballerinaLangVersion= 2201.7.0 | ||
stdlibIoVersion=1.5.0 | ||
ballerinaLangVersion=2201.8.0-20230726-145300-b2bdf796 | ||
stdlibIoVersion=1.6.0-20230810-115500-2e569f5 |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.2-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip | ||
networkTimeout=10000 | ||
validateDistributionUrl=true | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
Oops, something went wrong.