Skip to content

chore(deps): update otel/opentelemetry-collector docker tag to v0.104.0 #913

chore(deps): update otel/opentelemetry-collector docker tag to v0.104.0

chore(deps): update otel/opentelemetry-collector docker tag to v0.104.0 #913

# thanks to https://github.com/giantswarm/devctl/blob/v5.9.0/pkg/gen/input/workflows/internal/file/check_values_schema.yaml.template for the idea
name: 'Check if values schema file has been updated'
on:
pull_request:
branches:
- master
paths:
- 'chart/k8gb/values.yaml'
- 'chart/k8gb/values.schema.json'
permissions: # added using https://github.com/step-security/secure-workflows
contents: read
jobs:
check:
name: 'Check values.yaml and its schema in PR'
runs-on: ubuntu-22.04
steps:
- name: Harden Runner
uses: step-security/harden-runner@6d3c2fe731c8f225990c8018cb71c337c0d9dfcd
with:
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
- name: 'Checkout'
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- name: 'Check if values.schema.json was updated'
run: |
VALUES_FILE=chart/k8gb/values.yaml
SCHEMA_FILE=chart/k8gb/values.schema.json
# check if the values.json is covered by the schema
pip3 install json-spec
yq -o=json eval ${VALUES_FILE} > /tmp/values.json
json validate --schema-file=${SCHEMA_FILE} --document-file=/tmp/values.json
echo "PASSED: values.yaml and values.schema.json both appear to have been updated and the document is valid against the schema"