Skip to content

Commit 06aa504

Browse files
committed
And more of those
1 parent c0ddc85 commit 06aa504

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+84
-84
lines changed

.github/actions/bc-lint/action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ runs:
2323
using: 'composite'
2424
steps:
2525
- name: Checkout pytorch/test-infra repository
26-
uses: actions/checkout@v3
26+
uses: actions/checkout@v4
2727
with:
2828
repository: pytorch/test-infra
2929
path: _test-infra
@@ -78,4 +78,4 @@ runs:
7878
run: |
7979
rm -rf _repo
8080
rm -rf _test-infra
81-
shell: bash
81+
shell: bash

.github/actions/setup-binary-builds/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ runs:
5151
run: |
5252
set -euxo pipefail
5353
rm -rf "${REPOSITORY}"
54-
- uses: actions/checkout@v3
54+
- uses: actions/checkout@v4
5555
with:
5656
repository: ${{ inputs.repository }}
5757
ref: ${{ inputs.ref }}

.github/actions/setup-binary-upload/action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ inputs:
3333
runs:
3434
using: composite
3535
steps:
36-
- uses: actions/setup-python@v4
36+
- uses: actions/setup-python@v5
3737
with:
3838
python-version: '3.11'
3939
cache: pip
@@ -54,7 +54,7 @@ runs:
5454
echo "ARTIFACT_NAME=${REPOSITORY/\//_}_${REF}_${PYTHON_VERSION}_${CU_VERSION}_${ARCH}" >> "${GITHUB_ENV}"
5555
5656
# Need to checkout the target repository to run pkg-helpers
57-
- uses: actions/checkout@v3
57+
- uses: actions/checkout@v4
5858
with:
5959
repository: ${{ inputs.repository }}
6060
ref: ${{ inputs.ref }}

.github/actions/setup-build-test/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ runs:
3333
REPOSITORY: ${{ inputs.repository || github.repository }}
3434
run: |
3535
rm -rf "${REPOSITORY}"
36-
- uses: actions/checkout@v3
36+
- uses: actions/checkout@v4
3737
with:
3838
repository: ${{ inputs.repository || github.repository }}
3939
ref: ${{ inputs.ref || github.ref }}

.github/actions/trigger-nightly/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ inputs:
1919
runs:
2020
using: composite
2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323
with:
2424
ref: ${{ inputs.ref }}
2525
repository: ${{ inputs.repository }}

.github/actions/update-commit-hash/action.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,14 @@ runs:
4242
using: composite
4343
steps:
4444
- name: Checkout the source repo with the pinned commit file
45-
uses: actions/checkout@v3
45+
uses: actions/checkout@v4
4646
with:
4747
ref: 'main'
4848
submodules: true
4949
token: ${{ inputs.updatebot-token }}
5050

5151
- name: Checkout test-infra for the update_commit_hashes scripts
52-
uses: actions/checkout@v3
52+
uses: actions/checkout@v4
5353
with:
5454
repository: ${{ inputs.test-infra-repository }}
5555
ref: ${{ inputs.test-infra-ref }}
@@ -60,7 +60,7 @@ runs:
6060
run: |
6161
git clone https://github.com/${{ inputs.repo-owner }}/${{ inputs.repo-name }}.git --quiet
6262
63-
- uses: actions/setup-python@v4
63+
- uses: actions/setup-python@v5
6464
with:
6565
python-version: '3.11'
6666
cache: pip

.github/actions/update-viablestrict/action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,11 @@ outputs:
5959
runs:
6060
using: composite
6161
steps:
62-
- uses: actions/setup-python@v4
62+
- uses: actions/setup-python@v5
6363
with:
6464
python-version: '3.11'
6565

66-
- uses: actions/checkout@v3
66+
- uses: actions/checkout@v4
6767
with:
6868
repository: ${{ inputs.repository }}
6969
token: ${{ inputs.secret-bot-token }}

.github/workflows/_binary_conda_upload.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
timeout-minutes: 30
4646
name: ${{ matrix.build_name }}
4747
steps:
48-
- uses: actions/checkout@v3
48+
- uses: actions/checkout@v4
4949
with:
5050
repository: ${{ inputs.test-infra-repository }}
5151
ref: ${{ inputs.test-infra-ref }}

.github/workflows/_binary_upload.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
timeout-minutes: 30
5252
name: ${{ matrix.build_name }}
5353
steps:
54-
- uses: actions/checkout@v3
54+
- uses: actions/checkout@v4
5555
with:
5656
repository: ${{ inputs.test-infra-repository }}
5757
ref: ${{ inputs.test-infra-ref }}

.github/workflows/_prune-anaconda-packages.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
image: continuumio/miniconda3:4.12.0
2424
steps:
2525
- name: Checkout repository test-infra
26-
uses: actions/checkout@v3
26+
uses: actions/checkout@v4
2727
with:
2828
repository: pytorch/test-infra
2929
ref: ${{ github.ref }}

.github/workflows/_upload_docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
if: github.repository == ${{ inputs.repository }} && github.event_name == 'push' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v'))
2727
steps:
2828
- name: Checkout
29-
uses: actions/checkout@v3
29+
uses: actions/checkout@v4
3030
with:
3131
ref: ${{ inputs.docs-branch }}
3232
persist-credentials: true

.github/workflows/backfill-workflow-job.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
with:
2222
role-to-assume: arn:aws:iam::308535385114:role/gha_workflow_backfill-workflow-job
2323
aws-region: us-east-1
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
2525
- run: yarn install --frozen-lockfile
2626
- run: yarn node scripts/backfillJobs.mjs
2727
env:

.github/workflows/build_conda_macos.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ jobs:
100100
rm -rfv "${GITHUB_WORKSPACE}"
101101
mkdir -p "${GITHUB_WORKSPACE}"
102102
echo "::endgroup::"
103-
- uses: actions/checkout@v3
103+
- uses: actions/checkout@v4
104104
with:
105105
# Support the use case where we need to checkout someone's fork
106106
repository: ${{ inputs.test-infra-repository }}

.github/workflows/build_conda_windows.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
# to have a conversation
9393
timeout-minutes: ${{ inputs.timeout }}
9494
steps:
95-
- uses: actions/checkout@v3
95+
- uses: actions/checkout@v4
9696
with:
9797
# Support the use case where we need to checkout someone's fork
9898
repository: ${{ inputs.test-infra-repository }}

.github/workflows/build_wheels_linux.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ jobs:
143143
fi
144144
145145
echo "::endgroup::"
146-
- uses: actions/checkout@v3
146+
- uses: actions/checkout@v4
147147
with:
148148
# Support the use case where we need to checkout someone's fork
149149
repository: ${{ inputs.test-infra-repository }}

.github/workflows/build_wheels_macos.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ jobs:
117117
rm -rfv "${GITHUB_WORKSPACE}"
118118
mkdir -p "${GITHUB_WORKSPACE}"
119119
echo "::endgroup::"
120-
- uses: actions/checkout@v3
120+
- uses: actions/checkout@v4
121121
with:
122122
# Support the use case where we need to checkout someone's fork
123123
repository: ${{ inputs.test-infra-repository }}

.github/workflows/build_wheels_windows.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
# to have a conversation
9595
timeout-minutes: ${{ inputs.timeout }}
9696
steps:
97-
- uses: actions/checkout@v3
97+
- uses: actions/checkout@v4
9898
with:
9999
# Support the use case where we need to checkout someone's fork
100100
repository: ${{ inputs.test-infra-repository }}

.github/workflows/check-alerts.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
issues: write
4242
steps:
4343
- name: Checkout
44-
uses: actions/checkout@v3
44+
uses: actions/checkout@v4
4545
- name: Install Dependencies
4646
run: pip3 install requests setuptools==61.2.0
4747
- name: Check for alerts and creates issue
@@ -61,7 +61,7 @@ jobs:
6161
issues: write
6262
steps:
6363
- name: Checkout
64-
uses: actions/checkout@v3
64+
uses: actions/checkout@v4
6565
- name: Install Dependencies
6666
run: pip3 install requests setuptools==61.2.0 rockset==1.0.3
6767
- name: Check for alerts and creates issue

.github/workflows/clang-tidy-linux.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: linux.12xlarge
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
2323
- name: Build docker image
2424
run: |
2525
set -ex

.github/workflows/clang-tidy-macos.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: macos-12-xl
2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@v3
24+
uses: actions/checkout@v4
2525
- name: Install dependencies
2626
run: |
2727
brew install ninja
@@ -64,7 +64,7 @@ jobs:
6464
runs-on: macos-m1-stable
6565
steps:
6666
- name: Checkout
67-
uses: actions/checkout@v3
67+
uses: actions/checkout@v4
6868
- name: Install dependencies
6969
run: |
7070
brew install ninja cmake

.github/workflows/clickhouse-replicator-dynamo-lambda.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ jobs:
1919
id-token: write
2020
contents: read
2121
steps:
22-
- uses: actions/checkout@v3
23-
- uses: actions/setup-python@v4
22+
- uses: actions/checkout@v4
23+
- uses: actions/setup-python@v5
2424
with:
2525
python-version: '3.12'
2626
cache: pip

.github/workflows/clickhouse-replicator-s3-lambda.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ jobs:
1919
id-token: write
2020
contents: read
2121
steps:
22-
- uses: actions/checkout@v3
23-
- uses: actions/setup-python@v4
22+
- uses: actions/checkout@v4
23+
- uses: actions/setup-python@v5
2424
with:
2525
python-version: '3.12'
2626
cache: pip

.github/workflows/gha-artifacts-lambda.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ jobs:
2424
test:
2525
runs-on: ubuntu-22.04
2626
steps:
27-
- uses: actions/checkout@v3
28-
- uses: actions/setup-python@v4
27+
- uses: actions/checkout@v4
28+
- uses: actions/setup-python@v5
2929
with:
3030
python-version: '3.12'
3131
cache: pip
@@ -36,8 +36,8 @@ jobs:
3636
runs-on: ubuntu-22.04
3737
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
3838
steps:
39-
- uses: actions/checkout@v3
40-
- uses: actions/setup-python@v4
39+
- uses: actions/checkout@v4
40+
- uses: actions/setup-python@v5
4141
with:
4242
python-version: '3.12'
4343
cache: pip

.github/workflows/github-status-test-lambda.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ jobs:
3131
aws-region: us-east-1
3232

3333
- name: Check out test infra
34-
uses: actions/checkout@v3
34+
uses: actions/checkout@v4
3535

3636
- name: Setup python
37-
uses: actions/setup-python@v4
37+
uses: actions/setup-python@v5
3838

3939
- uses: nick-fields/retry@3e91a01664abd3c5cd539100d10d33b9c5b68482
4040
name: Setup dependencies

.github/workflows/lambda-do-release-runners.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
REF: ${{ inputs.tag }}
2020
steps:
2121
- name: Checkout code
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
2323
with:
2424
ref: ${{ inputs.tag }}
2525

.github/workflows/lambda-release-tag-runners.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
date: ${{ steps.date.outputs.date }}
1818
steps:
1919
- name: Checkout branch
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
2121

2222
- name: Get current date
2323
id: date

.github/workflows/lambda-runner-binaries-syncer.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ jobs:
1818
working-directory: terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer
1919

2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222
- name: Build, Lint, and Test
2323
run: make build

.github/workflows/lambda-runners.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ jobs:
1818
working-directory: terraform-aws-github-runner/modules/runners/lambdas/runners
1919

2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222
- name: Build, Lint, and Test
2323
run: make build

.github/workflows/lambda-webhook.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ jobs:
1818
working-directory: terraform-aws-github-runner/modules/webhook/lambdas/webhook
1919

2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222
- name: Build, Lint, and Test
2323
run: make build

.github/workflows/mobile_job.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ jobs:
125125
aws-region: us-east-1
126126

127127
- name: Checkout repository (${{ inputs.test-infra-repository }}@${{ inputs.test-infra-ref }})
128-
uses: actions/checkout@v3
128+
uses: actions/checkout@v4
129129
with:
130130
repository: ${{ inputs.test-infra-repository }}
131131
ref: ${{ inputs.test-infra-ref }}

.github/workflows/opensearch-gha-jobs-lambda.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ jobs:
1919
test:
2020
runs-on: ubuntu-22.04
2121
steps:
22-
- uses: actions/checkout@v3
23-
- uses: actions/setup-python@v4
22+
- uses: actions/checkout@v4
23+
- uses: actions/setup-python@v5
2424
with:
2525
python-version: '3.11'
2626
cache: pip
@@ -35,8 +35,8 @@ jobs:
3535
id-token: write
3636
contents: read
3737
steps:
38-
- uses: actions/checkout@v3
39-
- uses: actions/setup-python@v4
38+
- uses: actions/checkout@v4
39+
- uses: actions/setup-python@v5
4040
with:
4141
python-version: '3.11'
4242
cache: pip

.github/workflows/push-rockset-query-lambda-tags.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
push-rockset-tags:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
- run: yarn install --frozen-lockfile
2020
- run: yarn node scripts/pushRocksetTags.mjs
2121
env:

.github/workflows/revert-tracker.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
contents: write
1414
steps:
1515
- name: checkout
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717
with:
1818
path: test-infra
1919
- name: checkout
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
2121
with:
2222
repository: pytorch/pytorch
2323
path: pytorch

0 commit comments

Comments
 (0)