chore(deps): update confluentinc/cp-kafka-connect docker tag to v7.8.0 #83
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: Create a PR | |
on: | |
pull_request: | |
branches: [main] | |
paths-ignore: ["README.md", "LICENSE", "CONTRIBUTING.md"] | |
jobs: | |
test_and_build: | |
name: "[PR] Test & Build" | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Get the version | |
id: get_version | |
run: echo ::set-output name=VERSION::$(echo $GITHUB_REF | cut -d / -f 3) | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: "zulu" | |
java-version: "8" | |
cache: maven | |
- name: Maven Set Version | |
run: mvn versions:set -DnewVersion=${{ steps.get_version.outputs.VERSION }} -B --file pom.xml | |
- name: Run the Maven verify phase | |
run: mvn --batch-mode --update-snapshots verify |