Skip to content

Bump github/codeql-action from 3.29.8 to 3.29.9 #132

Bump github/codeql-action from 3.29.8 to 3.29.9

Bump github/codeql-action from 3.29.8 to 3.29.9 #132

Workflow file for this run

name: Pull Request
on:
pull_request:
permissions: read-all
jobs:
build:
if: "!contains(github.event.head_commit.message, '[skip-ci]')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK 17
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
with:
distribution: 'temurin'
java-version: '17'
cache: 'maven'
- name: Cache SonarQube packages
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Build with Maven
run: |
./mvnw -B --no-transfer-progress \
-Dsonar.organization=iromu \
-Dsonar.host.url=https://sonarcloud.io \
-Dsonar.projectKey=iromu_spring-boot-openfeature \
clean verify \
org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -P sonar
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
- name: Jacoco Artifacts
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
with:
name: jacoco
path: ./**/jacoco.xml
- name: Coveralls
uses: coverallsapp/github-action@648a8eb78e6d50909eff900e4ec85cab4524a45b # v2.3.6
with:
github-token: ${{ secrets.GITHUB_TOKEN }}