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

build(deps): bump sonarqube from 25.1.0.102122-community to 25.2.0.102705-community in /test-integration/sonar-pr #1048

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Open
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
28 changes: 14 additions & 14 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 All @@ -46,7 +46,7 @@ updates:
schedule:
interval: 'daily'
time: '12:00'
open-pull-requests-limit: 10
open-pull-requests-limit: 0
versioning-strategy: increase
labels:
- 'blueprint :paw_prints:'
Expand All @@ -60,7 +60,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 @@ -101,7 +101,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 @@ -113,7 +113,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 @@ -126,7 +126,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 @@ -138,7 +138,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 @@ -173,7 +173,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 @@ -227,7 +227,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 @@ -238,7 +238,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 @@ -249,7 +249,7 @@ updates:
schedule:
interval: 'daily'
time: '08:30'
open-pull-requests-limit: 5
open-pull-requests-limit: 0
labels:
- 'theme: dependencies'
- 'theme: cache'
Expand All @@ -260,7 +260,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 All @@ -271,7 +271,7 @@ updates:
schedule:
interval: 'daily'
time: '08:30'
open-pull-requests-limit: 5
open-pull-requests-limit: 0
labels:
- 'theme: dependencies'
- 'skip-changelog'
12 changes: 6 additions & 6 deletions .github/workflows/copyright-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@

name: Copyright Update
on:
workflow_dispatch:
schedule:
- cron: '0 0 31 12 *' # Repeats December 31st every year
- cron: '0 0 1 1 *' # Repeats January 1st every year

permissions:
contents: read
Expand All @@ -30,9 +31,9 @@ jobs:
contents: write # for peter-evans/create-pull-request to create branch
pull-requests: write # for peter-evans/create-pull-request to create a PR
name: copyright update
if: github.repository == 'jhipster/generator-jhipster'
if: github.repository == 'jhipster/generator-jhipster' || github.event_name == 'workflow_dispatch'
runs-on: ubuntu-latest
timeout-minutes: 40
timeout-minutes: 6
steps:
# Checkout
- uses: actions/checkout@v4
Expand All @@ -42,9 +43,8 @@ jobs:
# Update the copyright headers
- name: Find and Replace
run: |
CURRENT_YEAR=$(date +'%Y')
NEW_YEAR=$(($CURRENT_YEAR + 1))
grep -rlZE "Copyright ([0-9]+)-$CURRENT_YEAR" . | xargs -0 sed -i -E "s/Copyright ([0-9]+)-$CURRENT_YEAR/Copyright \1-$NEW_YEAR/g"
grep -rlZE "Copyright 20[0-9]{2}" . | xargs -0 sed -i -E "s/Copyright ([0-9]{4})-([0-9]{4})/Copyright \1-$(date +'%Y')/g"
git diff
# Create PR
- name: Create Pull Request
uses: peter-evans/create-pull-request@v7
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/docker-image-publish-github-registry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ env:
jobs:
build:
runs-on: ubuntu-20.04
if: github.repository == 'jhipster/generator-jhipster'
permissions:
contents: read
packages: write
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 "marceloshima@gmail.com"
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
2 changes: 1 addition & 1 deletion test-integration/sonar-pr/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use the official SonarQube 10.6.0 community image as the base
FROM sonarqube:25.1.0.102122-community
FROM sonarqube:25.2.0.102705-community

# Define version and plugin JAR name as environment variables
# renovate: datasource=github-releases depName=sonarqube-community-branch-plugin packageName=mc1arke/sonarqube-community-branch-plugin
Expand Down
Loading