Skip to content

Commit a2150fe

Browse files
AleksMatcopybara-github
authored andcommitted
Update versions of Github actions and Python version in actions
PiperOrigin-RevId: 960269273
1 parent 7e6d9c1 commit a2150fe

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/pypi_upload.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ jobs:
1717
id-token: write
1818

1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
2121

2222
- name: Set up Python
23-
uses: actions/setup-python@v5
23+
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
2424
with:
25-
python-version: '3.12'
25+
python-version: '3.14'
2626

2727
- name: Install dependencies
2828
run: pip install -U build
@@ -31,4 +31,4 @@ jobs:
3131
run: python -m build
3232

3333
- name: Publish to PyPI
34-
uses: pypa/gh-action-pypi-publish@release/v1
34+
uses: pypa/gh-action-pypi-publish@dc37677b2e1c63e2034f94d8a5b11f265b73ba33 # v1.14.2

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
os: [ubuntu-latest, macos-latest, windows-latest]
2424

2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
2727

2828
- name: Set up Python ${{ matrix.python-version }}
29-
uses: actions/setup-python@v5
29+
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
3030
id: setup_python
3131
with:
3232
python-version: ${{ matrix.python-version }}
@@ -44,7 +44,7 @@ jobs:
4444
run: ci/run_tests.sh
4545

4646
- name: Upload bazel test logs
47-
uses: actions/upload-artifact@v4
47+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
4848
with:
4949
name: bazel-testlogs-${{ matrix.os }}-${{ matrix.python-version }}
5050
path: ci-artifacts
@@ -57,12 +57,12 @@ jobs:
5757
runs-on: ubuntu-latest
5858
strategy:
5959
matrix:
60-
python-version: ["3.12"]
60+
python-version: ["3.14"]
6161
steps:
62-
- uses: actions/checkout@v4
62+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
6363

6464
- name: Set up Python ${{ matrix.python-version }}
65-
uses: actions/setup-python@v5
65+
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
6666
with:
6767
python-version: ${{ matrix.python-version }}
6868
- name: Install dependencies

0 commit comments

Comments
 (0)