Bump commons-cli:commons-cli from 1.8.0 to 1.9.0 #122
Workflow file for this run
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
## | |
# Java workflow to automate testing, dependency patching, and release | |
# publishing. | |
# ______________________________________________________________________________ | |
# | |
# Maintained by brightSPARK Labs. | |
# www.brightsparklabs.com | |
## | |
name: Java Workflow | |
on: [push, pull_request] | |
jobs: | |
call-java-workflow: | |
uses: brightsparklabs/github-actions/.github/workflows/java.yml@master | |
secrets: inherit | |
# These permissions are required for Dependabot to merge PRs. | |
permissions: | |
contents: write | |
pull-requests: write | |
with: | |
# Tests for Asanti are run on both Ubuntu and Windows. | |
os: '["ubuntu-latest", "windows-latest"]' |