Skip to content

Commit

Permalink
v0.19.0 (#170)
Browse files Browse the repository at this point in the history
* fix github actions to use new interface

* v0.19.0

* use setup-go@v2

* use setup-go@v2 in other workflow files
  • Loading branch information
Integralist authored Nov 19, 2020
1 parent e9802d1 commit 98cb4ff
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 25 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v1
uses: actions/setup-go@v2
with:
go-version: 1.14.x
- name: Install fossa
run: |
curl --proto '=https' --tlsv1.2 -sSf -H 'Cache-Control: no-cache' https://raw.githubusercontent.com/fossas/fossa-cli/master/install.sh | bash
shell: bash
- name: Set GOPATH
# Temporary fix, see: https://github.com/actions/setup-go/issues/14
run: |
echo "::set-env name=GOPATH::$(go env GOPATH)"
echo "::add-path::$(go env GOPATH)/bin"
shell: bash
- name: Checkout code
uses: actions/checkout@v1
- name: Fossa
Expand Down
15 changes: 2 additions & 13 deletions .github/workflows/pr_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,9 @@ jobs:
- name: Checkout code
uses: actions/checkout@v1
- name: Install Go
uses: actions/setup-go@v1
uses: actions/setup-go@v2
with:
go-version: 1.14.x
- name: Set GOPATH
# Temporary fix, see: https://github.com/actions/setup-go/issues/14
run: |
echo "GOPATH=$GITHUB_WORKSPACE/go" >> $GITHUB_ENV
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
shell: bash
- name: Restore cache
id: cache
uses: actions/cache@v1
Expand Down Expand Up @@ -63,14 +57,9 @@ jobs:
- name: Checkout code
uses: actions/checkout@v1
- name: Install Go
uses: actions/setup-go@v1
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Set GOPATH
# Temporary fix, see: https://github.com/actions/setup-go/issues/14
run: |
echo "GOPATH=$GITHUB_WORKSPACE/go" >> $GITHUB_ENV
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
- name: Restore cache
uses: actions/cache@v1
with:
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/tag_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,9 @@ jobs:
- name: Unshallow
run: git fetch --prune --unshallow
- name: Install Go
uses: actions/setup-go@v1
uses: actions/setup-go@v2
with:
go-version: '1.14.x'
- name: Set GOVERSION
run: |
echo "::set-env name=GOVERSION::$(go version)"
- name: Install Ruby
uses: actions/setup-ruby@v1
with:
Expand Down
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [v0.19.0](https://github.com/fastly/cli/releases/tag/v0.19.0) (2020-11-19)

[Full Changelog](https://github.com/fastly/cli/compare/v0.18.1...v0.19.0)

**Enhancements:**

- Support sasl kafka endpoint options in Fastly CLI [\#161](https://github.com/fastly/cli/pull/161)

## [v0.18.1](https://github.com/fastly/cli/releases/tag/v0.18.1) (2020-11-03)

[Full Changelog](https://github.com/fastly/cli/compare/v0.18.0...v0.18.1)
Expand Down Expand Up @@ -193,7 +201,6 @@
- Publish scoop package manifest during release process [\#45](https://github.com/fastly/cli/pull/45)
- Generate dep and rpm packages during release process [\#44](https://github.com/fastly/cli/pull/44)
- 🦀 🆙date to Rust 1.43.0 [\#40](https://github.com/fastly/cli/pull/40)
- Bump default Rust template to v0.3.0 [\#32](https://github.com/fastly/cli/pull/32)

**Closed issues:**

Expand All @@ -205,6 +212,7 @@

**Enhancements:**

- Bump default Rust template to v0.3.0 [\#32](https://github.com/fastly/cli/pull/32)
- Publish to homebrew [\#26](https://github.com/fastly/cli/pull/26)

**Bug fixes:**
Expand Down

0 comments on commit 98cb4ff

Please sign in to comment.