Skip to content
This repository was archived by the owner on Jun 18, 2025. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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
Expand All @@ -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!!!
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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/[email protected]
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down