Skip to content

Commit 92249e4

Browse files
Merge pull request #269 from salmanmkc:upgrade-github-actions-node24
PiperOrigin-RevId: 846797719 Change-Id: I2d3800c428d6e70a3370cfc6ba11f8fa8e27efa6
2 parents 1615c6f + 6d76cf0 commit 92249e4

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
wheel_identifier: macos_arm64
2626
runs-on: ${{ matrix.os }}
2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v6
2929
with:
3030
# Need full history to determine version number.
3131
fetch-depth: 0
@@ -42,7 +42,7 @@ jobs:
4242
shell: bash
4343
run: |
4444
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
45-
- uses: actions/cache@v4
45+
- uses: actions/cache@v5
4646
with:
4747
path: ${{ steps.pip-cache.outputs.dir }}
4848
key: pip-${{ runner.os }}-buildwheel-${{ hashFiles('tools/ci/*_requirements.txt', 'third_party/pypa/*_requirements_frozen.txt') }}
@@ -63,7 +63,7 @@ jobs:
6363
env:
6464
CIBW_BUILD: ${{ matrix.cibw_build }}
6565
- name: Upload wheels as artifacts
66-
uses: actions/upload-artifact@v4
66+
uses: actions/upload-artifact@v6
6767
with:
6868
name: python-wheels-${{ matrix.wheel_identifier }}
6969
path: |
@@ -77,7 +77,7 @@ jobs:
7777
needs:
7878
- "python-build-package"
7979
steps:
80-
- uses: actions/download-artifact@v4
80+
- uses: actions/download-artifact@v7
8181
with:
8282
pattern: python-wheels-*
8383
path: dist

.github/workflows/docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- "3.12"
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v6
1414
with:
1515
# Need full history to determine version number.
1616
fetch-depth: 0
@@ -28,7 +28,7 @@ jobs:
2828
shell: bash
2929
run: |
3030
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
31-
- uses: actions/cache@v4
31+
- uses: actions/cache@v5
3232
with:
3333
path: ${{ steps.pip-cache.outputs.dir }}
3434
key: pip-${{ runner.os }}-docs-${{ matrix.python-version }}-${{ hashFiles('third_party/pypa/workspace.bzl') }}
@@ -57,7 +57,7 @@ jobs:
5757
needs:
5858
- build-docs
5959
steps:
60-
- uses: actions/download-artifact@v4
60+
- uses: actions/download-artifact@v7
6161
with:
6262
name: docs
6363
- run: unzip docs_output.zip

0 commit comments

Comments
 (0)