diff options
-rw-r--r-- | .github/workflows/go.yml | 4 | ||||
-rw-r--r-- | .github/workflows/release.yml | 4 | ||||
-rw-r--r-- | go.mod | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 2507938..0ff0613 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.17 + - name: Set up Go 1.18 uses: actions/setup-go@v3 with: - go-version: 1.17 + go-version: 1.18 id: go - name: Checkout diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 404ff04..6c599b2 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.17 + - name: Set up Go 1.18 uses: actions/setup-go@v3 with: - go-version: 1.17 + go-version: 1.18 id: go - name: Checkout @@ -1,6 +1,6 @@ module github.com/Necoro/feed2imap-go -go 1.17 +go 1.18 require ( github.com/Necoro/go-readability v0.0.0-20220107222023-364d914a66d0 |