diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml index 11dbcd0cfe..8aad082dec 100644 --- a/.github/workflows/ci-test.yml +++ b/.github/workflows/ci-test.yml @@ -14,7 +14,7 @@ jobs: any-changes-founds: ${{ steps.any-changes-found.outputs.changes-found }} test-rust: ${{ steps.rust-changes.outputs.changes-found }} steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3.0.1 with: # This ensures that the tip of the PR is checked out instead of the merge between the base ref and the tip # On `push` this value will be empty and will "do-the-right-thing" @@ -49,7 +49,7 @@ jobs: needs: prepare # if: ${{ needs.prepare.outputs.any-changes-founds == 'true' }} steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3.0.1 with: ref: ${{ github.event.pull_request.head.sha }} - uses: ./.github/actions/build-setup @@ -68,7 +68,7 @@ jobs: needs: prepare # if: ${{ needs.prepare.outputs.test-rust == 'true' }} steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3.0.1 with: ref: ${{ github.event.pull_request.head.sha }} fetch-depth: 0 #get all the history!!! @@ -88,7 +88,7 @@ jobs: needs: prepare # if: ${{ needs.prepare.outputs.test-rust == 'true' }} steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3.0.1 with: ref: ${{ github.event.pull_request.head.sha }} - uses: ./.github/actions/build-setup @@ -119,7 +119,7 @@ jobs: # needs: prepare # if: ${{ needs.prepare.outputs.test-rust == 'true' }} # steps: - # - uses: actions/checkout@v2.4.0 + # - uses: actions/checkout@v3.0.1 # with: # ref: ${{ github.event.pull_request.head.sha }} # - uses: ./.github/actions/build-setup @@ -142,7 +142,7 @@ jobs: # env: # CRITERION_HOME: /tmp/benches # steps: - # - uses: actions/checkout@v2.4.0 + # - uses: actions/checkout@v3.0.1 # with: # ref: ${{ github.event.pull_request.head.sha }} # - uses: actions/cache@v2.1.6 @@ -173,7 +173,7 @@ jobs: needs: - prepare steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3.0.1 with: ref: ${{ github.event.pull_request.head.sha }} - name: Use Node.js 14 @@ -211,7 +211,7 @@ jobs: needs: - prepare steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.0.1 - name: Set up Ruby 2.6 uses: actions/setup-ruby@v1 with: diff --git a/.github/workflows/daily.yml b/.github/workflows/daily.yml index 5901e076e9..9fe2be28e3 100644 --- a/.github/workflows/daily.yml +++ b/.github/workflows/daily.yml @@ -10,7 +10,7 @@ jobs: env: AUDIT_SUMMARY_FILE: /tmp/summary steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3.0.1 with: ref: ${{ matrix.target-branch }} - uses: ./.github/actions/build-setup @@ -51,7 +51,7 @@ jobs: matrix: target-branch: [main] steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3.0.1 with: ref: ${{ matrix.target-branch }} - uses: ./.github/actions/build-setup