Skip to content

Commit e108755

Browse files
committed
Bump setup-python and setup-go to v5
1 parent e9794c1 commit e108755

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.github/actions/release-initialise/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ runs:
1616
shell: bash
1717

1818
- name: Set up Python
19-
uses: actions/setup-python@v4
19+
uses: actions/setup-python@v5
2020
with:
2121
python-version: 3.8
2222

.github/workflows/__go-tracing-autobuilder.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pr-checks/checks/go-indirect-tracing-workaround-diagnostic.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ operatingSystems: ["ubuntu"]
55
# pinned to a version which does not support statically linked binaries for indirect tracing
66
versions: ["stable-v2.14.6"]
77
steps:
8-
- uses: actions/setup-go@v4
8+
- uses: actions/setup-go@v5
99
with:
1010
# We need a Go version that ships with statically linked binaries on Linux
1111
go-version: ">=1.21.0"
@@ -14,7 +14,7 @@ steps:
1414
languages: go
1515
tools: ${{ steps.prepare-test.outputs.tools-url }}
1616
# Deliberately change Go after the `init` step
17-
- uses: actions/setup-go@v4
17+
- uses: actions/setup-go@v5
1818
with:
1919
go-version: "1.20"
2020
- name: Build code

pr-checks/checks/go-indirect-tracing-workaround.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ operatingSystems: ["ubuntu"]
55
# pinned to a version which does not support statically linked binaries for indirect tracing
66
versions: ["stable-v2.14.6"]
77
steps:
8-
- uses: actions/setup-go@v4
8+
- uses: actions/setup-go@v5
99
with:
1010
# We need a Go version that ships with statically linked binaries on Linux
1111
go-version: ">=1.21.0"

pr-checks/checks/go-tracing-custom-build-steps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: "Go: tracing with custom build steps"
22
description: "Checks that Go tracing traces the build when using custom build steps"
33
operatingSystems: ["ubuntu", "macos"]
44
steps:
5-
- uses: actions/setup-go@v4
5+
- uses: actions/setup-go@v5
66
with:
77
go-version: "~1.21.1"
88
- uses: ./../action/init

pr-checks/checks/go-tracing-legacy-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ operatingSystems: ["ubuntu", "macos"]
44
env:
55
DOTNET_GENERATE_ASPNET_CERTIFICATE: "false"
66
steps:
7-
- uses: actions/setup-go@v4
7+
- uses: actions/setup-go@v5
88
with:
99
go-version: "~1.21.1"
1010
- uses: ./../action/init

pr-checks/sync.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def writeHeader(checkStream):
7676
steps = [
7777
{
7878
'name': 'Setup Python on MacOS',
79-
'uses': 'actions/setup-python@v4',
79+
'uses': 'actions/setup-python@v5',
8080
# Ensure that this is serialized as a folded (`>`) string to preserve the readability
8181
# of the generated workflow.
8282
'if': FoldedScalarString(textwrap.dedent('''

0 commit comments

Comments
 (0)