chore(deps): update actions/upload-artifact action to v5 (#1324) #850
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: On Merge to main | |
| on: | |
| push: | |
| branches: | |
| - main | |
| permissions: write-all | |
| jobs: | |
| security: | |
| name: Security Checks | |
| uses: ./.github/workflows/_security-checks.yml | |
| static-checks: | |
| name: Static Checks | |
| uses: ./.github/workflows/_static-checks.yml | |
| secrets: inherit | |
| unit-tests: | |
| name: Unit Tests | |
| uses: ./.github/workflows/_unit-tests.yml | |
| secrets: inherit | |
| # The e2e tests are currently flaky, so we're disabling them for now, needs to be investigated | |
| # e2e-tests: | |
| # name: End-to-end tests | |
| # uses: ./.github/workflows/_e2e.yml | |
| # secrets: inherit |