Skip to content

Commit afa5ebc

Browse files
authored
Upgrade GitHub Actions to latest versions (#6991)
1 parent a11f39a commit afa5ebc

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/build-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106
107107
- name: Ensure Jekyll is disabled for GitHub Pages
108108
if: ${{ github.event_name == 'push' && !inputs.pr_number }} # Only deploy .nojekyll for main docs, not PR previews
109-
uses: peaceiris/actions-gh-pages@v3
109+
uses: peaceiris/actions-gh-pages@v4
110110
with:
111111
github_token: ${{ secrets.GITHUB_TOKEN }}
112112
publish_dir: ./_nojekyll
@@ -117,7 +117,7 @@ jobs:
117117

118118
- name: Deploy to GitHub Pages
119119
if: ${{ github.event_name == 'push' && !inputs.pr_number }} # Don't deploy doc previews for now to avoid overflowing gh-pages branch
120-
uses: peaceiris/actions-gh-pages@v3
120+
uses: peaceiris/actions-gh-pages@v4
121121
with:
122122
github_token: ${{ secrets.GITHUB_TOKEN }}
123123
publish_dir: ./_site

.github/workflows/build-matx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
persist-credentials: false
5252
- name: Add NVCC problem matcher
5353
run: echo "::add-matcher::$(pwd)/.github/problem-matchers/problem-matcher.json"
54-
- uses: aws-actions/configure-aws-credentials@v4
54+
- uses: aws-actions/configure-aws-credentials@v5
5555
if: ${{ github.repository == 'NVIDIA/cccl' }}
5656
with:
5757
role-to-assume: arn:aws:iam::279114543810:role/gha-oidc-NVIDIA

.github/workflows/build-pytorch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
persist-credentials: false
4242
- name: Add NVCC problem matcher
4343
run: echo "::add-matcher::$(pwd)/.github/problem-matchers/problem-matcher.json"
44-
- uses: aws-actions/configure-aws-credentials@v4
44+
- uses: aws-actions/configure-aws-credentials@v5
4545
if: ${{ github.repository == 'NVIDIA/cccl' }}
4646
with:
4747
role-to-assume: arn:aws:iam::279114543810:role/gha-oidc-NVIDIA

.github/workflows/build-rapids.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
persist-credentials: false
7878
- name: Add NVCC problem matcher
7979
run: echo "::add-matcher::$(pwd)/.github/problem-matchers/problem-matcher.json"
80-
- uses: aws-actions/configure-aws-credentials@v4
80+
- uses: aws-actions/configure-aws-credentials@v5
8181
if: ${{ github.repository == 'NVIDIA/cccl' }}
8282
with:
8383
role-to-assume: arn:aws:iam::279114543810:role/gha-oidc-NVIDIA

.github/workflows/git-bisect.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ jobs:
222222

223223
- name: Get AWS credentials for sccache bucket
224224
if: ${{ github.repository == 'NVIDIA/cccl' }}
225-
uses: aws-actions/configure-aws-credentials@v4
225+
uses: aws-actions/configure-aws-credentials@v5
226226
with:
227227
role-to-assume: arn:aws:iam::279114543810:role/gha-oidc-NVIDIA
228228
aws-region: us-east-2

.github/workflows/verify-devcontainers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ jobs:
128128
# We don't really need sccache configured, but we need the AWS credentials envvars to be set
129129
# in order to avoid the devcontainer hanging waiting for GitHub authentication
130130
- name: Get AWS credentials for sccache bucket
131-
uses: aws-actions/configure-aws-credentials@v4
131+
uses: aws-actions/configure-aws-credentials@v5
132132
with:
133133
role-to-assume: arn:aws:iam::279114543810:role/gha-oidc-NVIDIA
134134
aws-region: us-east-2

0 commit comments

Comments
 (0)