fix(DependencyInjection/Configuration): normalize exporter headers according to PSR HTTP transport #609
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: Fossa Scan | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| scan: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 20 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install Nix | |
| uses: DeterminateSystems/nix-installer-action@v16 | |
| - name: Setup Cachix | |
| uses: cachix/cachix-action@v16 | |
| with: | |
| name: opentelemetry | |
| extraPullNames: nix-shell, php-src-nix | |
| authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
| - name: Setup Nix magic cache | |
| uses: DeterminateSystems/magic-nix-cache-action@v9 | |
| - name: Instantiate Nix develop | |
| uses: nicknovitski/nix-develop@v1 | |
| - name: Get composer cache directory | |
| id: composercache | |
| run: echo "dir=$(composer config cache-files-dir)" >> "$GITHUB_OUTPUT" | |
| - name: Cache dependencies | |
| uses: actions/cache@v4 | |
| with: | |
| path: ${{ steps.composercache.outputs.dir }} | |
| key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} | |
| restore-keys: ${{ runner.os }}-composer- | |
| - name: List PHP installed extensions | |
| run: php -m | |
| - name: Update project dependencies | |
| run: | | |
| composer update --no-interaction --no-progress --ansi | |
| - name: Run Fossa Scan | |
| uses: fossas/fossa-action@v1 | |
| with: | |
| api-key: '384c9e439463ce9d43a4bb7641d6785b' | |
| - name: Run Fossa Test | |
| uses: fossas/fossa-action@v1 | |
| with: | |
| api-key: '384c9e439463ce9d43a4bb7641d6785b' | |
| run-tests: true |