Skip to content

Commit

Permalink
GitHub Actions upgrade (eclipse-ee4j#2351)
Browse files Browse the repository at this point in the history
Signed-off-by: Radek Felcman <[email protected]>
  • Loading branch information
rfelcman authored Jan 24, 2025
1 parent f2eb9b5 commit 3c39b2d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2021, 2023 Contributors to the Eclipse Foundation
# Copyright (c) 2021, 2025 Contributors to the Eclipse Foundation
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License v. 2.0 which is available at
Expand Down Expand Up @@ -42,17 +42,17 @@ jobs:

steps:
- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 21

- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
# config-file: ./.github/codeql/codeql-config.yml
Expand All @@ -78,4 +78,4 @@ jobs:
mvn -B clean compile -Ddeploy=true -Dnotests=true -Pstaging
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3
12 changes: 6 additions & 6 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2021, 2023 Contributors to the Eclipse Foundation
# Copyright (c) 2021, 2025 Contributors to the Eclipse Foundation
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License v. 2.0 which is available at
Expand Down Expand Up @@ -42,9 +42,9 @@ jobs:
mysql -e 'SHOW DATABASES;' -uroot -proot
mysql -e 'status;' -uroot -proot
- name: Checkout for build
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: ${{ matrix.java_version }}
Expand All @@ -59,17 +59,17 @@ jobs:

steps:
- name: Checkout for build
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 17
cache: maven
- name: Execute Validations
run: mvn -B -V org.owasp:dependency-check-maven:aggregate
- name: Upload dependency-check
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: dependency-check.html
path: target/dependency-check-report.html

0 comments on commit 3c39b2d

Please sign in to comment.