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 7e177ac commit 1288e13Copy full SHA for 1288e13
.github/workflows/e2e.yaml
@@ -16,15 +16,16 @@ name: e2e
16
17
env:
18
CI_COMMIT_REF_NAME: ${{ github.ref_name }}
19
+ GO_VERSION: "1.22.7"
20
21
on:
22
workflow_dispatch:
- pull_request:
23
- branches:
24
- - ci/tests/e2e-workflow
25
- push:
26
27
+ # pull_request:
+ # branches:
+ # - ci/tests/e2e-workflow
+ # push:
28
29
30
defaults:
31
run:
@@ -39,10 +40,10 @@ jobs:
39
40
runs-on: ubuntu-latest
41
name: Run e2e
42
steps:
- - name: Set up Go 1.21
43
+ - name: Set up Go ${{ env.GO_VERSION }}
44
uses: actions/setup-go@v5
45
with:
- go-version: "1.21"
46
+ go-version: "${{ env.GO_VERSION }}"
47
48
- name: Install Task
49
uses: arduino/setup-task@v2
0 commit comments