Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/binaries-nightly-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
build-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup Miniconda
uses: conda-incubator/setup-miniconda@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/code-style-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
python-version: ["3.9", "3.13"]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- uses: astral-sh/setup-uv@v6
with:
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
hvd_version: ${{ steps.set-versions.outputs.hvd_version }}
msdp_version: ${{ steps.set-versions.outputs.msdp_version }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Changed Files Exporter
if: github.event_name == 'pull_request'
id: files
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
echo "::endgroup::"

- name: Checkout repository (pytorch/test-infra)
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
# Support the use case where we need to checkout someone's fork
repository: pytorch/test-infra
Expand All @@ -73,7 +73,7 @@ jobs:
uses: ./test-infra/.github/actions/setup-linux

- name: Checkout repository (${{ github.repository }})
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
# Support the use case where we need to checkout someone's fork
repository: ${{ github.repository }}
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
echo "::endgroup::"

- name: Checkout repository (pytorch/test-infra)
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
# Support the use case where we need to checkout someone's fork
repository: pytorch/test-infra
Expand All @@ -132,7 +132,7 @@ jobs:
uses: ./test-infra/.github/actions/setup-linux

- name: Checkout repository (${{ github.repository }})
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
# Support the use case where we need to checkout someone's fork
repository: ${{ github.repository }}
Expand Down Expand Up @@ -181,7 +181,7 @@ jobs:
echo "::endgroup::"

- name: Checkout repository (pytorch/test-infra)
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
# Support the use case where we need to checkout someone's fork
repository: pytorch/test-infra
Expand All @@ -191,7 +191,7 @@ jobs:
uses: ./test-infra/.github/actions/setup-linux

- name: Checkout repository (${{ github.repository }})
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
# Support the use case where we need to checkout someone's fork
repository: ${{ github.repository }}
Expand Down Expand Up @@ -240,7 +240,7 @@ jobs:
echo "::endgroup::"

- name: Checkout repository (pytorch/test-infra)
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
# Support the use case where we need to checkout someone's fork
repository: pytorch/test-infra
Expand All @@ -250,7 +250,7 @@ jobs:
uses: ./test-infra/.github/actions/setup-linux

- name: Checkout repository (${{ github.repository }})
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
# Support the use case where we need to checkout someone's fork
repository: ${{ github.repository }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
os: ["ubuntu-latest"]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: astral-sh/setup-uv@v6
with:
version: "latest"
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
os: ["ubuntu-latest"]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: astral-sh/setup-uv@v6
with:
version: "latest"
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
os: ["ubuntu-latest"]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: astral-sh/setup-uv@v6
with:
version: "latest"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/gpu-hvd-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
echo "::endgroup::"

- name: Checkout repository (pytorch/test-infra)
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
# Support the use case where we need to checkout someone's fork
repository: pytorch/test-infra
Expand All @@ -54,7 +54,7 @@ jobs:
docker-image: ${{ env.DOCKER_IMAGE }}

- name: Checkout repository (${{ github.repository }})
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
# Support the use case where we need to checkout someone's fork
repository: ${{ github.repository }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/gpu-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
echo "::endgroup::"

- name: Checkout repository (pytorch/test-infra)
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
# Support the use case where we need to checkout someone's fork
repository: pytorch/test-infra
Expand All @@ -54,7 +54,7 @@ jobs:
docker-image: ${{ env.DOCKER_IMAGE }}

- name: Checkout repository (${{ github.repository }})
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
# Support the use case where we need to checkout someone's fork
repository: ${{ github.repository }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/hvd-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
pytorch-channel: [pytorch]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Get year & week number
id: get-date
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/mps-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,14 @@ jobs:
echo "::endgroup::"

- name: Checkout repository (pytorch/test-infra)
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
# Support the use case where we need to checkout someone's fork
repository: pytorch/test-infra
path: test-infra

- name: Checkout repository (${{ github.repository }})
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
# Support the use case where we need to checkout someone's fork
repository: ${{ github.repository }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pytorch-version-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
python-version: "3.11"

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Get year & week number
id: get-date
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
needs: build
if: always() && needs.build.result == 'failure'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: JasonEtco/create-an-issue@v2
name: Create issue if pytorch version tests failed
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stable-release-anaconda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
conda-build-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup Miniconda
uses: conda-incubator/setup-miniconda@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stable-release-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
build-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup Miniconda
uses: conda-incubator/setup-miniconda@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tpu-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ jobs:
xla-version: [nightly]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Set up Python 3.10
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.10"
architecture: "x64"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/triage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Pull Request Labeler
uses: actions/labeler@v5
uses: actions/labeler@v6
with:
configuration-path: .github/pr-labeler-config.yml
repo-token: "${{ secrets.GITHUB_TOKEN }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/typing-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
pytorch-channel: [pytorch]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Get year & week number
id: get-date
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
skip-distrib-tests: 1

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Get year & week number
id: get-date
Expand Down
Loading