Bump com.mchange:c3p0 from 0.9.5.5 to 0.12.0 in /EssentialsProtect #88
This file contains hidden or 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
| name: build-and-test | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| push: | |
| branches: | |
| - master | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up JDK 1.8 | |
| uses: actions/setup-java@v2 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 8 | |
| - name: Set up Maven | |
| uses: stCarolas/setup-maven@v4.5 | |
| with: | |
| maven-version: 3.9.1 | |
| - name: Build application | |
| shell: bash | |
| run: | | |
| mvn clean install | |
| - name: Upload JAR files from all modules | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: ${{ github.event.repository.name }}-${{ github.sha }} | |
| path: | | |
| Essentials/target/*.jar | |
| EssentialsChat/target/*.jar | |
| EssentialsGeoIP/target/*.jar | |
| EssentialsGroupBadge/target/*.jar | |
| EssentialsGroupManager/target/*.jar | |
| EssentialsPermissionsCommands/target/*.jar | |
| EssentialsProtect/target/*.jar | |
| EssentialsSpawn/target/*.jar | |
| EssentialsXMPP/target/*.jar |