Skip to content

fix(deps): update dependency io.cucumber:cucumber-bom to v7.18.0 #2739

fix(deps): update dependency io.cucumber:cucumber-bom to v7.18.0

fix(deps): update dependency io.cucumber:cucumber-bom to v7.18.0 #2739

Workflow file for this run

name: PR
on:
pull_request:
branches: [ master, main ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
- name: Set up JDK 8
uses: actions/setup-java@a1c6c9c8677803c9f4bd31e0f15ac0844258f955
with:
java-version: '8'
distribution: 'temurin'
cache: maven
- name: Initialize CodeQL
uses: github/codeql-action/init@63d519c0ae6a4b739e3377a517400c352a7d829b
with:
languages: java
- name: Cache local Maven repository
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
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 --activate-profiles e2e verify
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4.4.0
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@63d519c0ae6a4b739e3377a517400c352a7d829b