Skip to content

Commit 813cfe7

Browse files
[skip changelog] Bump actions/setup-python from 3 to 4 (#1754)
* Bump actions/setup-python from 3 to 4 Bumps [actions/setup-python](https://github.com/actions/setup-python) from 3 to 4. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v3...v4) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * Use non-version specific reference URLs for tool version workflow variables GitHub Actions actions are used by the workflows to set up development tools in the runner workspace. In order to facilitate updates to new versions of these tools, we set the version to be set up via environment variables at the top of the workflow. Since this variable definition is separate from the step using the action, it might not be immediately apparent to the maintainer which version syntaxes are supported. For this reason, comments were added with the URL to the relevant section of the consuming action's documentation. Previously, these URLs were made to point to the version of the documentation that matched the version of the action in use by the workflow. Since we only use a major version ref, the expectation was that this would only need to be updated rarely. However, it turned out that the major version bump cycle is significantly shorter than expected. In addition, it is easy to forget the update because action version update PRs are provided by Dependabot, which obviously won't update the URLs in the comments. So it will be best to use a URL that points to the documentation at the tip of the default branch of the action repository. The likelihood of the documentation provided by this URL not matching the behavior of the release version of the action in use is likely less than it is for an outdated URL. Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: per1234 <[email protected]>
1 parent 8b631ff commit 813cfe7

11 files changed

+19
-19
lines changed

.github/workflows/check-easyjson.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Check easyjson generated files
22

33
env:
4-
# See: https://github.com/actions/setup-go/tree/v2#readme
4+
# See: https://github.com/actions/setup-go/tree/main#supported-version-syntax
55
GO_VERSION: "1.17"
66

77
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows

.github/workflows/check-go-dependencies-task.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Check Go Dependencies
33

44
env:
5-
# See: https://github.com/actions/setup-go/tree/v3#readme
5+
# See: https://github.com/actions/setup-go/tree/main#supported-version-syntax
66
GO_VERSION: "1.17"
77

88
# See: https://docs.github.com/actions/using-workflows/events-that-trigger-workflows

.github/workflows/check-go-task.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Check Go
33

44
env:
5-
# See: https://github.com/actions/setup-go/tree/v2#readme
5+
# See: https://github.com/actions/setup-go/tree/main#supported-version-syntax
66
GO_VERSION: "1.17"
77

88
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows

.github/workflows/check-i18n-task.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Check Internationalization
22

33
env:
4-
# See: https://github.com/actions/setup-go/tree/v2#readme
4+
# See: https://github.com/actions/setup-go/tree/main#supported-version-syntax
55
GO_VERSION: "1.17"
66

77
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows

.github/workflows/check-markdown-task.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Check Markdown
33

44
env:
5-
# See: https://github.com/actions/setup-go/tree/v2#readme
5+
# See: https://github.com/actions/setup-go/tree/main#supported-version-syntax
66
GO_VERSION: "1.17"
77

88
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows

.github/workflows/check-mkdocs-task.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
name: Check Website
33

44
env:
5-
# See: https://github.com/actions/setup-go/tree/v2#readme
5+
# See: https://github.com/actions/setup-go/tree/main#supported-version-syntax
66
GO_VERSION: "1.17"
7-
# See: https://github.com/actions/setup-python/tree/v2#available-versions-of-python
7+
# See: https://github.com/actions/setup-python/tree/main#available-versions-of-python
88
PYTHON_VERSION: "3.9"
99

1010
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows
@@ -50,7 +50,7 @@ jobs:
5050
repo-token: ${{ secrets.GITHUB_TOKEN }}
5151

5252
- name: Install Python
53-
uses: actions/setup-python@v3
53+
uses: actions/setup-python@v4
5454
with:
5555
python-version: ${{ env.PYTHON_VERSION }}
5656

.github/workflows/check-protobuf-task.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Check Protocol Buffers
22

33
env:
4-
# See: https://github.com/actions/setup-go/tree/v2#readme
4+
# See: https://github.com/actions/setup-go/tree/main#supported-version-syntax
55
GO_VERSION: "1.17"
66

77
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows

.github/workflows/check-python-task.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Check Python
33

44
env:
5-
# See: https://github.com/actions/setup-python/tree/v2#available-versions-of-python
5+
# See: https://github.com/actions/setup-python/tree/main#available-versions-of-python
66
PYTHON_VERSION: "3.9"
77

88
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows
@@ -39,7 +39,7 @@ jobs:
3939
uses: actions/checkout@v3
4040

4141
- name: Install Python
42-
uses: actions/setup-python@v3
42+
uses: actions/setup-python@v4
4343
with:
4444
python-version: ${{ env.PYTHON_VERSION }}
4545

@@ -66,7 +66,7 @@ jobs:
6666
uses: actions/checkout@v3
6767

6868
- name: Install Python
69-
uses: actions/setup-python@v3
69+
uses: actions/setup-python@v4
7070
with:
7171
python-version: ${{ env.PYTHON_VERSION }}
7272

.github/workflows/deploy-cobra-mkdocs-versioned-poetry.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
name: Deploy Website
33

44
env:
5-
# See: https://github.com/actions/setup-go/tree/v2#readme
5+
# See: https://github.com/actions/setup-go/tree/main#supported-version-syntax
66
GO_VERSION: "1.17"
7-
# See: https://github.com/actions/setup-python/tree/v2#available-versions-of-python
7+
# See: https://github.com/actions/setup-python/tree/main#available-versions-of-python
88
PYTHON_VERSION: "3.9"
99

1010
on:
@@ -70,7 +70,7 @@ jobs:
7070
repo-token: ${{ secrets.GITHUB_TOKEN }}
7171

7272
- name: Install Python
73-
uses: actions/setup-python@v3
73+
uses: actions/setup-python@v4
7474
with:
7575
python-version: ${{ env.PYTHON_VERSION }}
7676

.github/workflows/test-go-integration-task.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
name: Test Integration
33

44
env:
5-
# See: https://github.com/actions/setup-go/tree/v2#readme
5+
# See: https://github.com/actions/setup-go/tree/main#supported-version-syntax
66
GO_VERSION: "1.17"
7-
# See: https://github.com/actions/setup-python/tree/v2#available-versions-of-python
7+
# See: https://github.com/actions/setup-python/tree/main#available-versions-of-python
88
PYTHON_VERSION: "3.9.6"
99

1010
# See: https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows
@@ -98,7 +98,7 @@ jobs:
9898
go-version: ${{ env.GO_VERSION }}
9999

100100
- name: Install Python
101-
uses: actions/setup-python@v3
101+
uses: actions/setup-python@v4
102102
with:
103103
python-version: ${{ env.PYTHON_VERSION }}
104104

.github/workflows/test-go-task.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Test Go
33

44
env:
5-
# See: https://github.com/actions/setup-go/tree/v2#readme
5+
# See: https://github.com/actions/setup-go/tree/main#supported-version-syntax
66
GO_VERSION: "1.17"
77

88
# See: https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows

0 commit comments

Comments
 (0)