We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e862a5 commit e08f1c9Copy full SHA for e08f1c9
.github/workflows/weekly-go-version-check.yaml
@@ -34,10 +34,10 @@ jobs:
34
- name: Get latest go patch version
35
id: patch-version
36
run: |
37
- export "GO_PATCH_VERSION=$(curl --silent https://go.dev/VERSION?m=text)" >> $GITHUB_ENV
+ echo "GO_PATCH_VERSION=$(curl --silent https://go.dev/VERSION?m=text)" >> $GITHUB_ENV
38
sed -i 's/GO_VERSION=[0-9\.]*/GO_VERSION=${{ env.GO_PATCH_VERSION }}/' Makefile
39
sed -i 's/golang:[0-9\.]*/golang:${{ env.GO_PATCH_VERSION }}/' Tiltfile
40
- echo $env.GO_PATCH_VERSION
+ echo "${{ env.GO_PATCH_VERSION }}"
41
- name: Create Pull Request
42
uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f # tag=v7.0.5
43
with:
0 commit comments