Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump org.redisson:redisson from 3.32.0 to 3.33.0 in /generators/spring-cache/resources #990

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ updates:
interval: 'daily'
# Before cache workflow
time: '23:00'
open-pull-requests-limit: 10
open-pull-requests-limit: 0
labels:
- 'theme: jhipster-internals'
- 'theme: dependencies'
Expand Down Expand Up @@ -59,7 +59,7 @@ updates:
interval: 'daily'
# Angular workflow is quite big. Give at least 2h interval.
time: '03:00'
open-pull-requests-limit: 10
open-pull-requests-limit: 0
versioning-strategy: increase
labels:
- 'theme: angular'
Expand Down Expand Up @@ -100,7 +100,7 @@ updates:
schedule:
interval: 'daily'
time: '00:00'
open-pull-requests-limit: 10
open-pull-requests-limit: 0
versioning-strategy: increase
labels:
- 'theme: dependencies'
Expand All @@ -112,7 +112,7 @@ updates:
schedule:
interval: 'daily'
time: '07:00'
open-pull-requests-limit: 10
open-pull-requests-limit: 0
versioning-strategy: increase
labels:
- 'theme: front'
Expand All @@ -137,7 +137,7 @@ updates:
schedule:
interval: 'daily'
time: '01:00'
open-pull-requests-limit: 10
open-pull-requests-limit: 0
versioning-strategy: increase
labels:
- 'theme: react'
Expand Down Expand Up @@ -171,7 +171,7 @@ updates:
schedule:
interval: 'daily'
time: '02:00'
open-pull-requests-limit: 10
open-pull-requests-limit: 0
versioning-strategy: increase
labels:
- 'theme: vue'
Expand Down Expand Up @@ -204,7 +204,7 @@ updates:
schedule:
interval: 'daily'
time: '00:20'
open-pull-requests-limit: 5
open-pull-requests-limit: 0
labels:
- 'theme: dependencies'
- 'theme: docker :whale:'
Expand All @@ -220,7 +220,7 @@ updates:
interval: 'daily'
# Maven doesn't have many PRs, but it triggers every client workflow. Let 2h of interval.
time: '05:00'
open-pull-requests-limit: 5
open-pull-requests-limit: 0
labels:
- 'theme: dependencies'
- 'theme: java'
Expand All @@ -231,7 +231,7 @@ updates:
schedule:
interval: 'daily'
time: '08:00'
open-pull-requests-limit: 5
open-pull-requests-limit: 0
labels:
- 'theme: dependencies'
- 'theme: java'
Expand All @@ -253,7 +253,7 @@ updates:
schedule:
interval: 'weekly'
time: '00:30'
open-pull-requests-limit: 10
open-pull-requests-limit: 0
labels:
- 'theme: github_actions'
- 'theme: CI builds'
Expand Down
30 changes: 30 additions & 0 deletions .github/workflows/sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: 'Sync'
on:
workflow_dispatch:
schedule:
- cron: '10 */2 * * *'

jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: 'SETUP: Checkout generator-jhipster'
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: 'Rebase'
run: |
git config --global user.email "[email protected]"
git config --global user.name "Marcelo Shima"
git remote add upstream https://github.com/jhipster/generator-jhipster.git
git remote -v
git fetch upstream main
git branch -va
git branch upstream-main upstream/main
git push origin upstream-main
git checkout main
git rebase upstream/main
git push -f origin
#git fetch origin upstream_main
#git checkout upstream_main
#git rebase upstream/main
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ xmemcached-provider = { module = 'com.google.code.simple-spring-memcached:xmemca

xmemcached = { module = 'com.googlecode.xmemcached:xmemcached', version = '2.4.8' }

redisson = { module = 'org.redisson:redisson', version = '3.32.0' }
redisson = { module = 'org.redisson:redisson', version = '3.33.0' }
Loading