Skip to content

Commit

Permalink
Update Go to 1.17.6
Browse files Browse the repository at this point in the history
Signed-off-by: Tobias Klauser <[email protected]>
  • Loading branch information
tklauser authored and michi-covalent committed Jan 11, 2022
1 parent dd554b3 commit 3ab53c0
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@424fc82d43fa5a37540bae62709ddcc23d9520d4
with:
go-version: 1.17.5
go-version: 1.17.6

- name: Run static checks
uses: golangci/golangci-lint-action@5c56cd6c9dc07901af25baab6f2b0d9f3b7c3018
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/kind.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@424fc82d43fa5a37540bae62709ddcc23d9520d4
with:
go-version: 1.17.5
go-version: 1.17.6

- name: Set up Go for root
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/multicluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@424fc82d43fa5a37540bae62709ddcc23d9520d4
with:
go-version: 1.17.5
go-version: 1.17.6

- name: Set up job variables
id: vars
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@424fc82d43fa5a37540bae62709ddcc23d9520d4
with:
go-version: 1.17.5
go-version: 1.17.6

- name: Generate the artifacts
run: make release
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ release:
--env "RELEASE_GID=$(RELEASE_GID)" \
--rm \
--workdir /cilium \
--volume `pwd`:/cilium docker.io/library/golang:1.17.5-alpine3.14 \
--volume `pwd`:/cilium docker.io/library/golang:1.17.6-alpine3.14 \
sh -c "apk add --no-cache make git && make local-release VERSION=${VERSION}"

local-release: clean
Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,16 @@ specific location instead of `/usr/local/bin`, e.g.
BINDIR=~/.local/bin make install
```

Alternatively, to install the latest binary release on Linux or macOS:

```
OS
curl -L --remote-name-all https://github.com/cilium/cilium-cli/releases/latest/download/cilium-linux-amd64.tar.gz{,.sha256sum}
sha256sum --check cilium-linux-amd64.tar.gz.sha256sum
sudo tar xzvfC cilium-linux-amd64.tar.gz /usr/local/bin
rm cilium-linux-amd64.tar.gz{,.sha256sum}
```

## Capabilities

### Install Cilium
Expand Down

0 comments on commit 3ab53c0

Please sign in to comment.