Update dependency elixir to v1.19.1 #244
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
| on: | |
| pull_request: | |
| branches: | |
| - "*" | |
| workflow_dispatch: {} | |
| name: "Pull Request" | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| name: "Test" | |
| permissions: | |
| contents: read | |
| security-events: write | |
| uses: ./.github/workflows/part_test.yml | |
| build: | |
| name: "Build" | |
| permissions: | |
| id-token: write | |
| contents: read | |
| attestations: write | |
| uses: ./.github/workflows/part_build.yml | |
| with: | |
| attest: false | |
| docs: | |
| name: "Docs" | |
| permissions: | |
| id-token: write | |
| contents: read | |
| attestations: write | |
| uses: ./.github/workflows/part_docs.yml | |
| with: | |
| attest: false | |
| report_deps: | |
| name: "Report Dependencies" | |
| # PRs from external forks do not have access to the Submission API | |
| if: ${{ github.event.pull_request.head.repo.full_name == github.repository }} | |
| needs: ['build'] | |
| permissions: | |
| contents: write | |
| uses: ./.github/workflows/part_report_deps.yml | |
| dependency-review: | |
| name: "Dependency Review" | |
| # PRs from external forks do not have access to the Submission API | |
| if: ${{ github.event.pull_request.head.repo.full_name == github.repository }} | |
| needs: ['report_deps'] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Harden Runner | |
| uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1 | |
| with: | |
| egress-policy: audit | |
| - name: 'Checkout Repository' | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: 'Dependency Review' | |
| uses: actions/dependency-review-action@40c09b7dc99638e5ddb0bfd91c1673effc064d8a # v4.8.1 |