Skip to content

Commit 46f262f

Browse files
committed
update actions
1 parent 227d3d7 commit 46f262f

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/_build_test_upload.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,13 @@ jobs:
6868
python-version: pure
6969
steps:
7070
- name: Checkout Source Repository
71-
uses: actions/checkout@v3
71+
uses: actions/checkout@v4
7272
with:
7373
ref: ${{ inputs.branch }}
7474
submodules: recursive
7575
- name: Setup Python ${{ matrix.python-version }} for Windows
7676
if: ${{ startsWith( matrix.os, 'windows' ) }}
77-
uses: actions/setup-python@v4
77+
uses: actions/setup-python@v5
7878
with:
7979
python-version: ${{ matrix.python-version }}
8080
- name: Add temp runner environment variables
@@ -167,7 +167,7 @@ jobs:
167167
aws-region: us-east-1
168168
- name: Download Artifacts from Github
169169
continue-on-error: true
170-
uses: actions/download-artifact@v3
170+
uses: actions/download-artifact@v4
171171
with:
172172
name: torchdata-artifact
173173
- name: Determine if Wheel Uploading is needed
@@ -216,11 +216,11 @@ jobs:
216216
runs-on: ubuntu-latest
217217
steps:
218218
- name: Setup Python 3.9
219-
uses: actions/setup-python@v4
219+
uses: actions/setup-python@v5
220220
with:
221221
python-version: 3.9
222222
- name: Checkout
223-
uses: actions/checkout@v3
223+
uses: actions/checkout@v4
224224
with:
225225
ref: ${{ inputs.branch }}
226226
submodules: recursive

.github/workflows/lint.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Setup Python
16-
uses: actions/setup-python@v4
16+
uses: actions/setup-python@v5
1717
with:
1818
python-version: "3.9"
1919
- name: Check out source repository
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
2121
- name: Install lint utilities
2222
run: |
2323
pip install pre-commit
@@ -43,11 +43,11 @@ jobs:
4343
echo "value=$PT_CHANNEL" >> $GITHUB_OUTPUT
4444
id: pytorch_channel
4545
- name: Setup Python environment
46-
uses: actions/setup-python@v4
46+
uses: actions/setup-python@v5
4747
with:
4848
python-version: 3.9
4949
- name: Check out source repository
50-
uses: actions/checkout@v3
50+
uses: actions/checkout@v4
5151
- name: Install PyTorch
5252
run: |
5353
pip3 install networkx
@@ -79,10 +79,10 @@ jobs:
7979
runs-on: ubuntu-latest
8080
steps:
8181
- name: Setup Python
82-
uses: actions/setup-python@v4
82+
uses: actions/setup-python@v5
8383
with:
8484
python-version: "3.9"
8585
- name: Check out source repository
86-
uses: actions/checkout@v3
86+
uses: actions/checkout@v4
8787
- name: Check if documentation is complete
8888
run: python ./.github/scripts/check_complete_doc.py

0 commit comments

Comments
 (0)