chore(deps): update github/codeql-action digest to 1f63aba #1886
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PR | |
on: | |
pull_request: | |
branches: [ master, main ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
services: | |
flagd: | |
image: ghcr.io/open-feature/flagd-testbed:latest | |
ports: | |
- 8013:8013 | |
steps: | |
- name: Check out the code | |
uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5 | |
- name: Set up JDK 8 | |
uses: actions/setup-java@b943a4ed876ec91f6d0cde2181d88d24e8e348de | |
with: | |
java-version: '8' | |
distribution: 'temurin' | |
cache: maven | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@a98b9bd46b0ae50188b580af503f5b9159c4fb37 | |
with: | |
languages: java | |
- name: Cache local Maven repository | |
uses: actions/cache@67b839edb68371cc5014f6cea11c9aa77238de78 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Verify with Maven | |
run: mvn --batch-mode --update-snapshots verify -P e2e-test | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@e1dd05cde2ed37d100f658b34ea423728ba1812e | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos | |
flags: unittests # optional | |
name: coverage # optional | |
fail_ci_if_error: true # optional (default = false) | |
verbose: true # optional (default = false) | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@a98b9bd46b0ae50188b580af503f5b9159c4fb37 |