Skip to content
This repository has been archived by the owner on Dec 4, 2023. It is now read-only.

Commit

Permalink
Change golang installation (#4553)
Browse files Browse the repository at this point in the history
* Change docker installation

* Change docker version
  • Loading branch information
obabec authored and k-wall committed May 20, 2020
1 parent d81f057 commit 983ea2a
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
3 changes: 0 additions & 3 deletions .github/scripts/install_dep.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@ curl -sL https://deb.nodesource.com/setup_13.x
sudo -E bash -
sudo apt-get install nodejs

echo "Install golang"
sudo apt-get install golang-1.13

echo "Install asciidoctor"
gem install asciidoctor

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ jobs:
- name: Install dependencies
run: ./.github/scripts/install_dep.sh

- uses: actions/setup-go@v2
with:
go-version: '1.13.1'
- run: go version

- name: setup-docker
run: ./.github/scripts/setup_docker.sh

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@ jobs:
- name: Install dependencies
run: ./.github/scripts/install_dep.sh

- uses: actions/setup-go@v2
with:
go-version: '1.13.1'
- run: go version

- name: setup-docker
run: ./.github/scripts/setup_docker.sh

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ jobs:
- name: Install dependencies
run: ./.github/scripts/install_dep.sh

- uses: actions/setup-go@v2
with:
go-version: '1.13.1'
- run: go version

- name: setup-docker
run: ./.github/scripts/setup_docker.sh

Expand Down

0 comments on commit 983ea2a

Please sign in to comment.