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

Merge master into 7.x.x 2024-11-29 #1134

Merged
merged 21 commits into from
Nov 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
cb08d18
Bump github/codeql-action from 3.27.0 to 3.27.1
dependabot[bot] Nov 11, 2024
6b2e5ec
Merge pull request #1125 from apache/dependabot/github_actions/github…
lukaszlenart Nov 11, 2024
8a2f494
WW-5484 Marks the DWR plugin as deprecated
lukaszlenart Nov 11, 2024
1903e0e
Merge pull request #1126 from apache/feature/WW-5484-dwr
lukaszlenart Nov 14, 2024
1f5305c
[maven-release-plugin] prepare release STRUTS_6_7_0
lukaszlenart Nov 17, 2024
085f50d
[maven-release-plugin] prepare for next development iteration
lukaszlenart Nov 17, 2024
b6d9dc9
Bump github/codeql-action from 3.27.1 to 3.27.4
dependabot[bot] Nov 18, 2024
8b9d61c
Add .gitattributes in case people don't have core.autocrlf set
sepe81 Nov 18, 2024
c8ab6ff
Upgrade maven to 3.9.9 and wrapper to 3.3.2
sepe81 Nov 18, 2024
3b7a4d8
Merge pull request #1129 from sepe81/feature/Upgrade-maven-to-3.9.9-a…
lukaszlenart Nov 18, 2024
780280a
Merge pull request #1128 from apache/dependabot/github_actions/github…
lukaszlenart Nov 18, 2024
2e431df
Always run Sonar scan against the master branch
lukaszlenart Apr 21, 2024
55885bc
Runs Sonar step in case of running on master or PR
lukaszlenart Nov 18, 2024
b1d7c09
Uses Java 21 when running Sonar check
lukaszlenart Nov 18, 2024
c009a4a
Avoids running Sonar scan in forks
lukaszlenart Nov 18, 2024
b3807b1
Merge pull request #921 from apache/fix/sonar
lukaszlenart Nov 18, 2024
58d4d70
Skip Sonar scan on PRs created by Dependabot
lukaszlenart Nov 18, 2024
d6b015f
Merge pull request #1130 from apache/fix/sonar-dependabot
lukaszlenart Nov 18, 2024
6e9fa71
Uses AND instead of OR to check Sonar prerequisites
lukaszlenart Nov 18, 2024
b3e0747
Merge pull request #1131 from apache/fix/sonar-scan-and
lukaszlenart Nov 19, 2024
6100068
Merge remote-tracking branch 'origin/master' into merge/master-to-7xx…
lukaszlenart Nov 29, 2024
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
5 changes: 5 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Set the default behavior, in case people don't have core.autocrlf set.
* text=auto
*.bat eol=crlf
*.cmd eol=crlf
*.sh eol=lf
6 changes: 3 additions & 3 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ jobs:
java-version: 17
cache: 'maven'
- name: Initialize CodeQL
uses: github/codeql-action/init@v3.27.0
uses: github/codeql-action/init@v3.27.4
with:
languages: ${{ matrix.language }}
- name: Autobuild
uses: github/codeql-action/autobuild@v3.27.0
uses: github/codeql-action/autobuild@v3.27.4
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3.27.0
uses: github/codeql-action/analyze@v3.27.4
with:
category: "/language:${{matrix.language}}"
2 changes: 1 addition & 1 deletion .github/workflows/scorecards-analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,6 @@ jobs:
retention-days: 5

- name: "Upload to code-scanning"
uses: github/codeql-action/upload-sarif@3aa71356c75a8edd8430d54dff2982203a28be45 # 2.22.11
uses: github/codeql-action/upload-sarif@a1695c562bbfa68dc5ab58c9b5e9f616b52bf5be # 2.22.11
with:
sarif_file: results.sarif
7 changes: 4 additions & 3 deletions .github/workflows/sonar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,18 @@ jobs:
sonarcloud:
name: Scan
runs-on: ubuntu-latest
if: ${{ !github.event.pull_request.head.repo.fork }}
if: ${{ !github.event.pull_request.base.repo.fork && !github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]' }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
java-version: 21
cache: 'maven'
- env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONARCLOUD_TOKEN }}
run: mvn -B -V -Pcoverage -DskipAssembly verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar --no-transfer-progress
if: ${{ github.ref == 'master' || github.base_ref == 'master' }}
run: ./mvnw -B verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.branch.name=master -Pcoverage -DskipAssembly
5 changes: 3 additions & 2 deletions .mvn/wrapper/maven-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.6/apache-maven-3.9.6-bin.zip
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar
wrapperVersion=3.3.2
distributionType=only-script
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip
Loading
Loading