fix(deps): update all patch and digest versions #2725
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: Pull request integration tests ARM | |
| on: | |
| push: | |
| branches: ["main", "release-*"] | |
| paths: | |
| - ".github/workflows/pull_request_integration_tests_arm.yml" | |
| - "bpf/**" | |
| - "cmd/**" | |
| - "configs/**" | |
| - "internal/**" | |
| - "pkg/**" | |
| - "scripts/**" | |
| pull_request: | |
| branches: ["main", "release-*"] | |
| paths: | |
| - ".github/workflows/pull_request_integration_tests_arm.yml" | |
| - "bpf/**" | |
| - "cmd/**" | |
| - "configs/**" | |
| - "internal/**" | |
| - "pkg/**" | |
| - "scripts/**" | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| permissions: | |
| # Required for codecov | |
| checks: write | |
| pull-requests: write | |
| # Required for uploading artifacts | |
| actions: write | |
| name: test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| persist-credentials: false | |
| - name: Set up Go | |
| uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0 | |
| with: | |
| cache: "false" | |
| go-version-file: "go.mod" | |
| - name: Clean up disk space | |
| run: | | |
| docker system prune -af | |
| docker volume prune -f | |
| - name: Run integration tests | |
| run: make docker-generate integration-test-arm | |
| timeout-minutes: 60 | |
| - name: Upload integration test logs | |
| uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 | |
| if: always() | |
| with: | |
| name: Test Logs | |
| path: | | |
| testoutput/*.log | |
| testoutput/kind | |
| - name: Report coverage | |
| uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1 | |
| env: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
| with: | |
| files: ./testoutput/itest-covdata.txt | |
| flags: integration-test-arm |