Skip to content
Open
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/MonthlyLinkCheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
permissions:
issues: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 1
- name: Check Links
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/_build-tutorials-base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
docker exec -it $(docker container ps --format '{{.ID}}') bash

- name: Checkout Tutorials
uses: actions/checkout@v3
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
docker exec -it $(docker container ps --format '{{.ID}}') bash

- name: Checkout Tutorials
uses: actions/checkout@v3
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-redirects.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docathon-label-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ jobs:
pull-requests: write
steps:
- name: Check if PR mentions an issue and get labels
uses: actions/checkout@v2
uses: actions/checkout@v6
with:
fetch-depth: 1
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
github-secret: ${{ secrets.GITHUB_TOKEN }}

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v6

- name: Setup Linux
uses: pytorch/test-infra/.github/actions/setup-linux@main
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/link_checkPR.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 1

Expand All @@ -22,7 +22,7 @@ jobs:

- name: Check for Skip Label
id: skip-label
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
const labels = await github.rest.issues.listLabelsOnIssue({
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lintrunner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout tutorials
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
uses: actions/checkout@v6

- name: Setup Python
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
uses: actions/setup-python@v5
with:
python-version: '3.12'

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/spelling.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
- name: Check for skip label and get changed files
id: check-files
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
let skipCheck = false;
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
core.setOutput('files', changedFiles.join('\n'));
core.setOutput('is-pr', (context.eventName === 'pull_request').toString());

- uses: actions/checkout@v4
- uses: actions/checkout@v6
if: steps.check-files.outputs.skip != 'true'
with:
fetch-depth: 0
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
echo "$FILES"
fi

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
if: |
steps.check-files.outputs.skip != 'true' &&
steps.check.outputs.skip != 'true'
Expand Down
Loading