Skip to content

[DMS-370] Adding support for IAM authentication with AWS MSK (#8) #7

[DMS-370] Adding support for IAM authentication with AWS MSK (#8)

[DMS-370] Adding support for IAM authentication with AWS MSK (#8) #7

Workflow file for this run

# SPDX-License-Identifier: Apache-2.0
# Licensed to the Ed-Fi Alliance under one or more agreements.
# The Ed-Fi Alliance licenses this file to you under the Apache License, Version 2.0.
# See the LICENSE and NOTICES files in the project root for more information.
name: Dependency Graph Upload
# Dependabot does not natively support generating a dependency graph
# for Gradle files. This workflow calculates the dependency graph
# and uploads into GitHub.
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#gradle
on:
push:
branches: ["main"]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
permissions:
contents: write
jobs:
dependency-submission:
runs-on: ubuntu-latest
defaults:
run:
working-directory: kafka/ed-fi-kafka-connect-transforms
steps:
- name: Checkout sources
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Setup Java
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1
with:
java-version: "17"
distribution: "temurin"
- name: Setup Gradle
uses: gradle/actions/setup-gradle@d9c87d481d55275bb5441eef3fe0e46805f9ef70 # v3.5.0
- name: Generate Gradle wrapper
run: gradle wrapper
- name: Generate and submit dependency graph
uses: gradle/actions/dependency-submission@d9c87d481d55275bb5441eef3fe0e46805f9ef70 # v3.5.0
with:
build-root-directory: kafka/ed-fi-kafka-connect-transforms