Skip to content
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
6 changes: 3 additions & 3 deletions .github/workflows/ci-post-land.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
rust-changes: ${{ steps.rust-changes.outputs.changes-found }}
base-image-changes: ${{ steps.base-image-changes.outputs.changes-found }}
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3.1.0
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 @@ -60,7 +60,7 @@ jobs:
IMAGE_NAME: ${{ github.repository }}_build_environment
IMAGE_TAG: ${{ needs.prepare.outputs.changes-target-branch }}
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3.1.0
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 @@ -88,7 +88,7 @@ jobs:
# - "${{github.workspace}}:/opt/git/diem"
# steps:
# - name: Checkout repository
# uses: actions/checkout@v2.4.0
# uses: actions/checkout@v3.1.0
# - uses: ./.github/actions/build-setup
# - uses: actions/cache@v2.1.6
# with:
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
test-dev-setup: ${{ steps.dev-setup-sh-changes.outputs.changes-found }}
test-non-rust-lint: ${{ steps.non-rust-lint-changes.outputs.changes-found }}
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3.1.0
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 @@ -76,7 +76,7 @@ jobs:
matrix:
target_os: [github]
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3.1.0
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: build image with dev-setup.sh
Expand All @@ -97,7 +97,7 @@ jobs:
volumes:
- "${{github.workspace}}:/opt/git/diem"
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3.1.0
with:
ref: ${{ github.event.pull_request.head.sha }}
- uses: ./.github/actions/build-setup
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
volumes:
- "${{github.workspace}}:/opt/git/diem"
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3.1.0
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0 #get all the history!!!
Expand Down Expand Up @@ -172,7 +172,7 @@ jobs:
volumes:
- "${{github.workspace}}:/opt/git/diem"
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3.1.0
with:
ref: ${{ github.event.pull_request.head.sha }}
- uses: ./.github/actions/build-setup
Expand Down Expand Up @@ -205,7 +205,7 @@ jobs:
volumes:
- "${{github.workspace}}:/opt/git/diem"
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3.1.0
with:
ref: ${{ github.event.pull_request.head.sha }}
- uses: ./.github/actions/build-setup
Expand Down Expand Up @@ -233,7 +233,7 @@ jobs:
env:
CRITERION_HOME: /tmp/benches
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3.1.0
with:
ref: ${{ github.event.pull_request.head.sha }}
- uses: actions/cache@v2.1.6
Expand Down Expand Up @@ -269,7 +269,7 @@ jobs:
needs:
- prepare
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3.1.0
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Use Node.js 14
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
env:
AUDIT_SUMMARY_FILE: /tmp/summary
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3.1.0
with:
ref: ${{ matrix.target-branch }}
- uses: ./.github/actions/build-setup
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
matrix:
target-branch: [main]
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3.1.0
with:
ref: ${{ matrix.target-branch }}
- uses: ./.github/actions/build-setup
Expand Down