Skip to content
This repository has been archived by the owner on Aug 2, 2023. It is now read-only.

Commit

Permalink
Update dependencies packages by renovate (2022-12-02) (#988)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Tomachi <[email protected]>
  • Loading branch information
3 people authored Dec 3, 2022
1 parent bc20305 commit c796f9a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 23 deletions.
18 changes: 0 additions & 18 deletions .github/workflows/qodana-clone-finder.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/qodana-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
distribution: adopt

- name: Qodana Scan
uses: JetBrains/[email protected].3
uses: JetBrains/[email protected].4
timeout-minutes: 30
with:
upload-result: true
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/renovate-pr-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,12 @@ jobs:

- name: Process change pr base & add reviewer
run: |
cat ../pr_urls.txt | xargs -L1 gh pr edit -B dep-update/${{ steps.date.outputs.date }} --add-reviewer ${{ github.event.sender.login }}
# check exists github.event.sender.login
REVIEWER=${{ github.event.sender.login }}
if [ -z "$REVIEWER" ]; then
REVIEWER="book000"
fi
cat ../pr_urls.txt | xargs -L1 gh pr edit -B dep-update/${{ steps.date.outputs.date }} --add-reviewer $REVIEWER
cat ../pr_urls.txt | xargs -L1 gh pr edit -B dep-update/${{ steps.date.outputs.date }} || true
env:
GH_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@
<dependency>
<groupId>net.dv8tion</groupId>
<artifactId>JDA</artifactId>
<version>5.0.0-alpha.22</version>
<version>5.0.0-beta.1</version>
<exclusions>
<exclusion>
<groupId>club.minnced</groupId>
Expand All @@ -204,7 +204,7 @@
<dependency>
<groupId>com.jaoafa</groupId>
<artifactId>jaosuperachievement2</artifactId>
<version>2.5.32</version>
<version>2.5.33</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -254,7 +254,7 @@
</dependency>
<dependency>
<groupId>com.rollbar</groupId>
<version>1.8.1</version>
<version>1.9.0</version>
<artifactId>rollbar-java</artifactId>
</dependency>
<dependency>
Expand Down

0 comments on commit c796f9a

Please sign in to comment.