Skip to content

Commit

Permalink
update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ramanishsingh committed Jan 10, 2025
1 parent 227d3d7 commit 46f262f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/_build_test_upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,13 @@ jobs:
python-version: pure
steps:
- name: Checkout Source Repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ inputs.branch }}
submodules: recursive
- name: Setup Python ${{ matrix.python-version }} for Windows
if: ${{ startsWith( matrix.os, 'windows' ) }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Add temp runner environment variables
Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:
aws-region: us-east-1
- name: Download Artifacts from Github
continue-on-error: true
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: torchdata-artifact
- name: Determine if Wheel Uploading is needed
Expand Down Expand Up @@ -216,11 +216,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Setup Python 3.9
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ inputs.branch }}
submodules: recursive
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Check out source repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install lint utilities
run: |
pip install pre-commit
Expand All @@ -43,11 +43,11 @@ jobs:
echo "value=$PT_CHANNEL" >> $GITHUB_OUTPUT
id: pytorch_channel
- name: Setup Python environment
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Check out source repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install PyTorch
run: |
pip3 install networkx
Expand Down Expand Up @@ -79,10 +79,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Check out source repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Check if documentation is complete
run: python ./.github/scripts/check_complete_doc.py

0 comments on commit 46f262f

Please sign in to comment.