ローカルで開発しているときはpom.xmlにsystemPathを書いていたのですが、GitHub Actions側でのビルド時にライブラリを参照できませんでした。
※プロジェクト直下のlibフォルダにocijdbc11.jarを格納しておきます。
<pre>
<scope>system</scope>
<systemPath>${project.basedir}/lib/ocijdbc11.jar</systemPath>
</pre>
参照できなかったときのエラー
[WARNING] 'dependencies.dependency.systemPath' for com.oracle:ocijdbc11:jar should not point
at files within the project directory,
${project.basedir}/lib/ocijdbc11.jar will be unresolvable by dependent projects
@ line 246, column 16