chore(deps)(deps): bump go.opentelemetry.io/otel/sdk from 1.43.0 to 1.44.0 #51
Workflow file for this run
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: [dev, main, master] | |
| tags: | |
| - 'v*' | |
| pull_request: | |
| jobs: | |
| lint-and-test-oss: | |
| name: Lint and test (OSS) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: ./.github/actions/talos/lint-and-test-oss | |
| docker-compose-oss: | |
| name: Docker Compose (OSS) | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 20 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: ./.github/actions/talos/docker-compose-oss | |
| demo: | |
| name: Demo verification | |
| runs-on: ubuntu-latest | |
| needs: [lint-and-test-oss] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: ./.github/actions/talos/demo | |
| # Documentation is intentionally not built in the OSS mirror. The public tree is | |
| # commercial-stripped (no docs/quickstart/docker-commercial.md, no | |
| # tools/doctest/setup-commercial.sh, and it cannot build `-tags commercial`), so a | |
| # docs build here would fail on references it can never satisfy. Full docs and | |
| # doctest validation runs in the monorepo (.github/workflows/reusable-talos-oss-test.yaml), | |
| # where the commercial sources exist and a real docs bug still fails CI. | |
| release: | |
| name: Generate release | |
| runs-on: ubuntu-latest | |
| needs: [lint-and-test-oss, docker-compose-oss, demo] | |
| if: ${{ github.ref_type == 'tag' }} | |
| steps: | |
| - uses: ory/ci/releaser@master | |
| with: | |
| token: ${{ secrets.ORY_BOT_PAT }} | |
| goreleaser_key: ${{ secrets.GORELEASER_KEY }} | |
| cosign_pwd: ${{ secrets.COSIGN_PWD }} | |
| docker_username: ${{ secrets.DOCKERHUB_USERNAME }} | |
| docker_password: ${{ secrets.DOCKERHUB_PASSWORD }} |