Bump io.github.classgraph:classgraph from 4.8.175 to 4.8.176 in /java-client #2117
Workflow file for this run
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: Dependabot PR actions | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- labeled | |
- unlabeled | |
jobs: | |
dependabot: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
contents: write | |
if: ${{ github.actor == 'dependabot[bot]' }} | |
steps: | |
- name: GitHub App token | |
id: github_app_token | |
uses: tibdex/[email protected] | |
with: | |
app_id: ${{ secrets.APP_ID }} | |
private_key: ${{ secrets.APP_PRIVATE_KEY }} | |
installation_id: 22958780 | |
- name: Check out code | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ steps.github_app_token.outputs.token }} | |
- id: version | |
run: | | |
echo "::set-output name=version::$(cat gradle.properties | grep systemProp.version | cut -d' ' -f3 | cut -d\. -f1,2)" | |
- name: Update the changelog | |
uses: dangoslen/dependabot-changelog-helper@v2 | |
with: | |
version: "Unreleased ${{ steps.version.outputs.version }}" | |
- name: Commit the changes | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: "Update changelog" | |
branch: ${{ github.head_ref }} | |
commit_user_name: dependabot[bot] | |
commit_user_email: [email protected] | |
commit_options: '--signoff' |