From ceb20b868f4aa950c78c0a43f288e6fd82e78f3b Mon Sep 17 00:00:00 2001 From: crystal Date: Thu, 23 Mar 2023 00:12:43 -0600 Subject: [PATCH] Use go 1.19 --- .forgejo/workflows/test.yml | 4 ++-- go.mod | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml index bf34338..bc8e956 100644 --- a/.forgejo/workflows/test.yml +++ b/.forgejo/workflows/test.yml @@ -13,11 +13,11 @@ jobs: steps: - uses: actions/setup-go@v3 with: - go-version: 1.20 + go-version: 1.19 - uses: actions/checkout@v3 - name: vet checks run: make vet - name: build run: make build - name: test - run: make test \ No newline at end of file + run: make test diff --git a/go.mod b/go.mod index d33c830..7ffe771 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module codeberg.org/forgejo/runner -go 1.20 +go 1.19 require ( code.gitea.io/actions-proto-go v0.2.0