Skip to content

build(deps): bump io.opentelemetry.proto:opentelemetry-proto from 1.2.0-alpha to 1.3.1-alpha #10137

build(deps): bump io.opentelemetry.proto:opentelemetry-proto from 1.2.0-alpha to 1.3.1-alpha

build(deps): bump io.opentelemetry.proto:opentelemetry-proto from 1.2.0-alpha to 1.3.1-alpha #10137

Workflow file for this run

name: "CodeQL"
on:
push:
branches-ignore:
- 'dependabot/**'
pull_request:
branches: [ main ]
paths-ignore:
- '**.md'
- 'docs/**'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
language: [ 'java' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]
# Learn more:
# https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed
steps:
- uses: actions/checkout@v4
- uses: eclipse-edc/.github/.github/actions/setup-build@main
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
queries: +security-and-quality
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# queries: ./path/to/local/query, your-org/your-repo/queries@main
# Compiles production Java source (without tests)
- name: Build
run: ./gradlew compileJava --no-daemon
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3