Skip to content

Bump com.oracle.database.jdbc:ojdbc11 from 21.16.0.0 to 23.6.0.24.10 #849

Bump com.oracle.database.jdbc:ojdbc11 from 21.16.0.0 to 23.6.0.24.10

Bump com.oracle.database.jdbc:ojdbc11 from 21.16.0.0 to 23.6.0.24.10 #849

Workflow file for this run

# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: ${{ matrix.os }} / OpenJDK ${{ matrix.jdk }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
jdk: ['21']
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up JDK ${{ matrix.jdk }}
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: ${{ matrix.jdk }}
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build