Skip to content

Commit

Permalink
CI: Migrate malfet/checkout to actions/checkout
Browse files Browse the repository at this point in the history
We are migrating to actions/checkout since this action
has all the functionality that was needed in malfet/checkout

Issue: pytorch/ci-infra#242

Signed-off-by: Jessica Wagantall <[email protected]>
  • Loading branch information
jwagantall committed Jan 8, 2025
1 parent 0914fa3 commit 54131af
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/actions/bc-lint/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ runs:
path: _test-infra

- name: Checkout ${{ inputs.repo }}
uses: malfet/checkout@silent-checkout
uses: actions/checkout@v4
with:
ref: ${{ inputs.head_sha }}
fetch-depth: -1
submodules: false
quiet-checkout: true
show-progress: false
path: _repo

- name: Merge PR changes onto base
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-dependencies-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ jobs:
echo "pr_number=$PR_NUMBER" >> "$GITHUB_OUTPUT"
- name: Checkout Pytorch repository
uses: malfet/checkout@silent-checkout
uses: actions/checkout@v4
with:
repository: pytorch/pytorch
fetch-depth: -1
submodules: false
quiet-checkout: true
show-progress: false

- name: Set up Git
shell: bash
Expand Down

0 comments on commit 54131af

Please sign in to comment.