[Snyk] Security upgrade python from 3.7-slim to 3.13.0b4-slim #25
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: prometheus-compliance-tests | |
on: | |
push: | |
branches: [ main ] | |
tags: | |
- 'v[0-9]+.[0-9]+.[0-9]+*' | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref }} | |
cancel-in-progress: true | |
env: | |
# See: https://github.com/actions/cache/issues/810#issuecomment-1222550359 | |
# Cache downloads for this workflow consistently run in under 1 minute | |
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 5 | |
jobs: | |
prometheus-compliance-tests: | |
runs-on: ubuntu-latest | |
if: ${{ github.actor != 'dependabot[bot]' }} | |
steps: | |
- name: Collect Workflow Telemetry | |
if: always() | |
uses: runforesight/foresight-workflow-kit-action@v1 | |
with: | |
api_key: ${{ secrets.FORESIGHT_API_KEY }} | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
with: | |
path: opentelemetry-collector-contrib | |
- name: Setup Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ~1.19.6 | |
- name: Cache Go | |
id: go-cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/go/bin | |
~/go/pkg/mod | |
~/.cache/go-build | |
key: prometheus-${{ runner.os }}-go-${{ hashFiles('**/go.mod', '**/go.sum') }} | |
- run: make otelcontribcol | |
working-directory: opentelemetry-collector-contrib | |
- name: Checkout compliance repo | |
uses: actions/checkout@v3 | |
with: | |
repository: prometheus/compliance | |
path: compliance | |
ref: f0482884578bac67b053e3eaa1ca7f783d146557 | |
- name: Copy binary to compliance directory | |
run: mkdir compliance/remote_write_sender/bin && cp opentelemetry-collector-contrib/bin/otelcontribcol_linux_amd64 compliance/remote_write_sender/bin/otelcol_linux_amd64 | |
- name: Run compliance tests | |
run: go test -v --tags=compliance -run "TestRemoteWrite/otel/.+" ./ |& tee ./test-report.txt | |
working-directory: compliance/remote_write_sender | |
- name: Analyze Test and/or Coverage Results | |
if: always() | |
uses: runforesight/foresight-test-kit-action@v1 | |
with: | |
api_key: ${{ secrets.FORESIGHT_API_KEY }} | |
working_directory: compliance/remote_write_sender | |
test_framework: golang | |
test_format: text | |
test_path: ./test-report.txt |