Skip to content

Commit

Permalink
commit anyway
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkosrc committed Jan 31, 2024
1 parent 02f50c5 commit 949f982
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/update-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,22 @@ jobs:
java-version: '17'
distribution: 'temurin'

- name: Set Git Config
run: |
git config --global user.email "${{ secrets.USER_EMAIL }}"
git config --global user.name "${{ secrets.USER_NAME }}"
- name: Update project code
run: |
git pull --rebase
- name: Update Dependencies with gradle
uses: gradle/actions/setup-gradle@v3
- run: ./gradlew versionCatalogUpdate
id: depup-id

- name: Set Git Config
run: |
git config --global user.email "${{ secrets.USER_EMAIL }}"
git config --global user.name "${{ secrets.USER_NAME }}"
- name: Push if done successful
run: |
git pull --rebase
git add .
git commit -m "updated deps"
git push origin withUpdatedDependencies

0 comments on commit 949f982

Please sign in to comment.