Skip to content

Commit 63574c1

Browse files
authored
fix: relax Golang version requirement to run GitHub Action (#83)
* fix: relax Golang version requirement to run GitHub Action Use a method to install the Golang conformance test client that doesn't require Go 1.16+. This is important for Functions Framework Go, which needs to test using multiple different versions of Go but currently relies on the same version of Go to install the test client and run the Framework itself. * Don't use 'latest' string
1 parent a853e0f commit 63574c1

File tree

5 files changed

+15
-8
lines changed

5 files changed

+15
-8
lines changed

action/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
This action runs the Functions Framework conformance tests with the specified
44
parameters.
55

6-
Requires Go 1.16+ to be installed prior to running (e.g. actions/setup-go).
6+
Requires Go to be installed prior to running (e.g. actions/setup-go).
77

88
## Inputs
99

1010
### `version`
1111

12-
The version of conformance tests to run. Default `latest`.
12+
The version of conformance tests to run. Default to latest release if unspecified.
1313

1414
### `cmd`
1515

action/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: 'Run conformance tests'
22
description: 'Run the functions framework conformance tests with specified parameters.'
33
inputs:
44
version:
5-
description: 'version of the conformance tests to run'
6-
default: 'latest'
5+
description: 'version of the conformance tests to run. Defaults to latest release if unspecified.'
6+
default: ''
77
outputFile:
88
description: 'output file from function'
99
default: 'function_output.json'

action/dist/index.js

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

0 commit comments

Comments
 (0)