Skip to content

Commit

Permalink
Merge pull request #221 from docker/fix-e2e
Browse files Browse the repository at this point in the history
Fix e2e tests
  • Loading branch information
silvin-lubecki committed Feb 27, 2024
2 parents 6911e3c + f33afee commit 688ad00
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
env:
GO111MODULE: "on"
steps:
- name: Set up Go 1.15
- name: Set up Go 1.22
uses: actions/setup-go@v1
with:
go-version: 1.15
go-version: 1.22
id: go

- name: Checkout code into the Go module directory
Expand All @@ -36,10 +36,10 @@ jobs:
- name: Docker version
run: docker version

- name: Set up Go 1.15
- name: Set up Go 1.22
uses: actions/setup-go@v1
with:
go-version: 1.15
go-version: 1.22
id: go

- name: Checkout code into the Go module directory
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/release-weekly-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
env:
GO111MODULE: "on"
steps:
- name: Set up Go 1.15
- name: Set up Go 1.22
uses: actions/setup-go@v1
with:
go-version: 1.15
go-version: 1.22
id: go

- name: Checkout code into the Go module directory
Expand All @@ -41,10 +41,10 @@ jobs:
env:
GO111MODULE: "on"
steps:
- name: Set up Go 1.15
- name: Set up Go 1.22
uses: actions/setup-go@v1
with:
go-version: 1.15
go-version: 1.22
id: go

- name: Checkout code into the Go module directory
Expand Down Expand Up @@ -78,10 +78,10 @@ jobs:
GITHUB_WORKFLOW_URL: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}

steps:
- name: Set up Go 1.15
- name: Set up Go 1.22
uses: actions/setup-go@v2
with:
go-version: 1.15
go-version: 1.22
id: go

- name: Checkout code into the Go module directory
Expand All @@ -101,7 +101,7 @@ jobs:
env:
E2E_HUB_USERNAME: ${{ secrets.E2E_HUB_USERNAME }}
E2E_HUB_TOKEN: ${{ secrets.E2E_HUB_TOKEN }}
run: make TAG_NAME=${{ github.event.inputs.tag }} -f builder.Makefile e2e
run: make TAG_NAME=${{ github.event.inputs.tag }} e2e

release:
name: Do GitHub release
Expand Down

0 comments on commit 688ad00

Please sign in to comment.