chore(deps): update actions/checkout action to v6 (#22) #92
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: Overflow Test | |
| on: [push] | |
| defaults: | |
| run: | |
| # default failure handling for shell scripts in 'run' steps | |
| shell: 'bash -Eeuo pipefail -x {0}' | |
| permissions: {} | |
| jobs: | |
| overflow_test: | |
| runs-on: ubuntu-latest | |
| name: Overflow Test | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6 | |
| with: | |
| persist-credentials: false | |
| - name: Generate Test Summary | |
| id: generate-summary | |
| uses: ./ | |
| with: | |
| artifact_directory: example-artifacts/ | |
| limit_summary: 10 | |
| - name: If there is an overflow summary, archive it | |
| if: ${{steps.generate-summary.outputs.Overflow}} | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: ${{steps.generate-summary.outputs.Overflow}} | |
| path: ${{steps.generate-summary.outputs.Overflow}} | |
| retention-days: 7 |