From fdc61e6ed07099983269165cc273ea53e6f379de Mon Sep 17 00:00:00 2001 From: Stefan Schubert Date: Mon, 3 Jun 2024 21:06:54 +0200 Subject: [PATCH] Patchmanagement SB 3.3.0 / Java 22 --- .github/workflows/codeql-analysis.yml | 10 +++++----- .github/workflows/maven.yml | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index d3c097d..2d7c509 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -35,14 +35,14 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v5 - name: Set up JDK 22 - uses: actions/setup-java@v3 + uses: actions/setup-java@v5 with: java-version: '22' distribution: 'corretto' # maven repo cache save and restore - - uses: actions/cache@v3 + - uses: actions/cache@v5 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} @@ -50,7 +50,7 @@ jobs: ${{ runner.os }}-maven- # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v2 + uses: github/codeql-action/init@v5 with: languages: ${{ matrix.language }} # If you wish to specify custom queries, you can do so here or in a config file. @@ -77,4 +77,4 @@ jobs: run: mvn -B compile --file pom.xml - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 + uses: github/codeql-action/analyze@v5 diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index dd73de6..0fea62d 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -15,14 +15,14 @@ jobs: runs-on: macos-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v5 - name: Set up JDK 22 - uses: actions/setup-java@v3 + uses: actions/setup-java@v5 with: java-version: '22' distribution: 'corretto' # maven repo cache save and restore - - uses: actions/cache@v3 + - uses: actions/cache@v5 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}