Update postgres Docker tag to v16.6 (#13) #16
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
name: Submit Dependency Graph | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: write # Needed to check out the code and submit a dependency graph snapshot | |
env: | |
JAVA_VERSION: 17 | |
jobs: | |
submit-dependency-graph: | |
name: Submit Dependency Graph | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Java | |
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4 | |
with: | |
distribution: "temurin" | |
java-version: ${{ env.JAVA_VERSION }} | |
- name: Generate and submit dependency graph | |
uses: gradle/actions/dependency-submission@db19848a5fa7950289d3668fb053140cf3028d43 # v3 | |
env: | |
DEPENDENCY_GRAPH_EXCLUDE_PROJECTS: ":build-logic" | |
DEPENDENCY_GRAPH_INCLUDE_CONFIGURATIONS: "compileClasspath|runtimeClasspath" |