diff options
author | René 'Necoro' Neumann <necoro@necoro.eu> | 2021-10-23 00:38:17 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.eu> | 2021-10-23 00:38:17 +0200 |
commit | 534f236ec7988743d305738c93bced1b31e1bf9a (patch) | |
tree | 06fb8f7c0d061c517315eabc55b6a60664c5a176 | |
parent | c6f69b11925c9ad5b977f3bf18e54ec5ac6f47e9 (diff) | |
download | feed2imap-go-534f236ec7988743d305738c93bced1b31e1bf9a.tar.gz feed2imap-go-534f236ec7988743d305738c93bced1b31e1bf9a.tar.bz2 feed2imap-go-534f236ec7988743d305738c93bced1b31e1bf9a.zip |
Upgrade to Go 1.17
-rw-r--r-- | .github/workflows/go.yml | 4 | ||||
-rw-r--r-- | .github/workflows/release.yml | 4 | ||||
-rw-r--r-- | go.mod | 16 |
3 files changed, 19 insertions, 5 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index e1cf719..cdec465 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -13,10 +13,10 @@ jobs: runs-on: ubuntu-latest steps: - - name: Set up Go 1.16 + - name: Set up Go 1.17 uses: actions/setup-go@v2 with: - go-version: 1.16 + go-version: 1.17 id: go - name: Checkout diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 621f110..26579d2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,10 +11,10 @@ jobs: runs-on: ubuntu-latest steps: - - name: Set up Go 1.16 + - name: Set up Go 1.17 uses: actions/setup-go@v2 with: - go-version: 1.16 + go-version: 1.17 id: go - name: Checkout @@ -1,6 +1,6 @@ module github.com/Necoro/feed2imap-go -go 1.16 +go 1.17 require ( github.com/PuerkitoBio/goquery v1.7.1 @@ -18,6 +18,20 @@ require ( gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b ) +require ( + github.com/andybalholm/cascadia v1.2.0 // indirect + github.com/emersion/go-sasl v0.0.0-20200509203442-7bfe0ed36a21 // indirect + github.com/emersion/go-textwrapper v0.0.0-20200911093747-65d896831594 // indirect + github.com/json-iterator/go v1.1.10 // indirect + github.com/mattn/go-runewidth v0.0.9 // indirect + github.com/mmcdole/goxpp v0.0.0-20181012175147-0068e33feabf // indirect + github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect + github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742 // indirect + github.com/olekukonko/tablewriter v0.0.5 // indirect + github.com/ssor/bom v0.0.0-20170718123548-6386211fdfcf // indirect + golang.org/x/text v0.3.7 // indirect +) + replace ( github.com/jaytaylor/html2text => github.com/Necoro/html2text v0.0.0-20210724110643-65369e0955db github.com/mmcdole/gofeed => github.com/Necoro/gofeed v1.1.1-0.20210423205404-5a9d204f8125 |