Skip to content

Commit 3551acd

Browse files
authored
build: update actions/checkout and actions/setup-python (#1909)
1 parent ea6f800 commit 3551acd

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

synthtool/gcp/templates/python_library/.github/workflows/docs.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout
11-
uses: actions/checkout@v3
11+
uses: actions/checkout@v4
1212
- name: Setup Python
13-
uses: actions/setup-python@v4
13+
uses: actions/setup-python@v5
1414
with:
1515
python-version: "3.9"
1616
- name: Install nox
@@ -24,9 +24,9 @@ jobs:
2424
runs-on: ubuntu-latest
2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v4
2828
- name: Setup Python
29-
uses: actions/setup-python@v4
29+
uses: actions/setup-python@v5
3030
with:
3131
python-version: "3.10"
3232
- name: Install nox

synthtool/gcp/templates/python_library/.github/workflows/lint.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout
11-
uses: actions/checkout@v3
11+
uses: actions/checkout@v4
1212
- name: Setup Python
13-
uses: actions/setup-python@v4
13+
uses: actions/setup-python@v5
1414
with:
1515
python-version: "{{ default_python_version }}"
1616
- name: Install nox

synthtool/gcp/templates/python_library/.github/workflows/unittest.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
python: {{unit_test_python_versions}}
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515
- name: Setup Python
16-
uses: actions/setup-python@v4
16+
uses: actions/setup-python@v5
1717
with:
1818
python-version: ${{ '{{' }} matrix.python {{ '}}' }}
1919
- name: Install nox
@@ -37,9 +37,9 @@ jobs:
3737
- unit
3838
steps:
3939
- name: Checkout
40-
uses: actions/checkout@v3
40+
uses: actions/checkout@v4
4141
- name: Setup Python
42-
uses: actions/setup-python@v4
42+
uses: actions/setup-python@v5
4343
with:
4444
python-version: "{{ default_python_version }}"
4545
- name: Install coverage

0 commit comments

Comments
 (0)