Skip to content

Commit 08a092d

Browse files
authored
chore: update post processor image (googleapis#11979)
This PR updates the post processor image to the latest one which is `gcr.io/cloud-devrel-public-resources/owlbot-python-mono-repo@sha256:2425930c45520a5acb255bd2876c078681f90e6e259dee2739e86d60a94a2a10`. The latest image includes the following fix to update the default python version to 3.10 in `noxfile.py`: googleapis/synthtool#1891 Run the following commands to obtain the latest sha256 ``` docker pull gcr.io/cloud-devrel-public-resources/owlbot-python-mono-repo:latest ``` ``` partheniou@partheniou-vm-3:~/git/google-cloud-python$ docker inspect --format='{{.RepoDigests}}' gcr.io/cloud-devrel-public-resources/owlbot-python-mono-repo:latest [gcr.io/cloud-devrel-public-resources/owlbot-python-mono-repo@sha256:2425930c45520a5acb255bd2876c078681f90e6e259dee2739e86d60a94a2a10] ```
1 parent dafd4d0 commit 08a092d

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/.OwlBot.lock.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# limitations under the License.
1414
docker:
1515
image: gcr.io/cloud-devrel-public-resources/owlbot-python-mono-repo:latest
16-
digest: sha256:11c56ce03d0ada22086790a5f4a3b552b304a1d71554cfeda3372885d390984a
16+
digest: sha256:2425930c45520a5acb255bd2876c078681f90e6e259dee2739e86d60a94a2a10

.github/workflows/docs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup Python
1717
uses: actions/setup-python@v4
1818
with:
19-
python-version: "3.9"
19+
python-version: "3.10"
2020
- name: Install nox
2121
run: |
2222
python -m pip install --upgrade setuptools pip wheel
@@ -25,7 +25,7 @@ jobs:
2525
env:
2626
BUILD_TYPE: presubmit
2727
TEST_TYPE: docs
28-
PY_VERSION: "3.9"
28+
PY_VERSION: "3.10"
2929
run: |
3030
ci/run_conditional_tests.sh
3131
docfx:
@@ -36,7 +36,7 @@ jobs:
3636
- name: Setup Python
3737
uses: actions/setup-python@v4
3838
with:
39-
python-version: "3.9"
39+
python-version: "3.10"
4040
- name: Install nox
4141
run: |
4242
python -m pip install --upgrade setuptools pip wheel
@@ -45,6 +45,6 @@ jobs:
4545
env:
4646
BUILD_TYPE: presubmit
4747
TEST_TYPE: docfx
48-
PY_VERSION: "3.9"
48+
PY_VERSION: "3.10"
4949
run: |
5050
ci/run_conditional_tests.sh

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup Python
1717
uses: actions/setup-python@v4
1818
with:
19-
python-version: "3.9"
19+
python-version: "3.10"
2020
- name: Install nox
2121
run: |
2222
python -m pip install --upgrade setuptools pip wheel
@@ -25,13 +25,13 @@ jobs:
2525
env:
2626
BUILD_TYPE: presubmit
2727
TEST_TYPE: lint
28-
PY_VERSION: "3.9"
28+
PY_VERSION: "3.10"
2929
run: |
3030
ci/run_conditional_tests.sh
3131
- name: Run lint_setup_py
3232
env:
3333
BUILD_TYPE: presubmit
3434
TEST_TYPE: lint_setup_py
35-
PY_VERSION: "3.9"
35+
PY_VERSION: "3.10"
3636
run: |
3737
ci/run_conditional_tests.sh

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ jobs:
3737
id: date
3838
run: echo "::set-output name=current_date::$(date +'%Y-%m-%d')"
3939
- uses: actions/checkout@v4
40-
- name: Set up Python 3.9
40+
- name: Set up Python 3.10
4141
uses: actions/setup-python@v4
4242
with:
43-
python-version: 3.9
43+
python-version: 3.10
4444
- name: Install script dependencies
4545
run: pip3 install -r requirements.txt
4646
working-directory: ./scripts

.github/workflows/scripts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup Python
1717
uses: actions/setup-python@v4
1818
with:
19-
python-version: "3.9"
19+
python-version: "3.10"
2020
- name: Install pytest
2121
run: |
2222
python -m pip install pytest

0 commit comments

Comments
 (0)