diff --git a/.github/workflows/test-on-push.yml b/.github/workflows/test-on-push.yml index 95351e1..fb8c5cc 100644 --- a/.github/workflows/test-on-push.yml +++ b/.github/workflows/test-on-push.yml @@ -4,7 +4,7 @@ jobs: checkfixup: runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 - run: make checkfixup @@ -12,21 +12,21 @@ jobs: checkformatting: runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - run: make env - run: make checkformatting checkmigrations: runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - run: make env - run: make checkmigrations test: runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - run: make env - run: make test - run: make test-coverage-report