Skip to content

Bump org.springframework.boot from 3.2.2 to 3.3.3 #97

Bump org.springframework.boot from 3.2.2 to 3.3.3

Bump org.springframework.boot from 3.2.2 to 3.3.3 #97

Workflow file for this run

#
# Copyright 2023 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
---
name: Build and Validate
on:
push:
branches: [ "main" ]
pull_request:
types: [ opened, synchronize, reopened ]
permissions:
actions: read
contents: read
security-events: write
jobs:
build_and_test:
runs-on: ubuntu-latest
name: Gradle build and CodeQL
steps:
- uses: actions/checkout@v3
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'temurin'
- name: Cache Deps
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: build-deps
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: java
queries: security-and-quality
- name: Build and Test
run: ./gradlew clean test build assemble
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
- name: Upload CodeCov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
verbose: true