Skip to content

Commit

Permalink
update dependencies and build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
reddec committed Dec 29, 2023
1 parent dc18e1f commit 622a3bf
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 16 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,19 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v1
uses: actions/setup-go@v5
with:
go-version: '^1.19'
go-version: '^1.21'
id: go
- name: Install deps
run: sudo apt install -y python3 pandoc
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v3
- name: Check out code into the Go module directory
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
lfs: true
fetch-depth: 0
Expand All @@ -37,15 +37,15 @@ jobs:
pandoc MANUAL.md -s -t man -o trusted-cgi.1
pandoc --metadata title="Trusted-CGI manual" MANUAL.md -s --include-in-header=./docs/assets/github-pandoc.css --toc -o MANUAL.html
gzip trusted-cgi.1
- uses: azure/docker-login@v1
- uses: docker/login-action@v3
with:
username: 'reddec'
password: ${{ secrets.DOCKERIO_PASSWORD }}

- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
uses: goreleaser/goreleaser-action@v5
with:
version: latest
args: release --rm-dist --release-footer _footer.md --release-header release-note.md
args: release --clean --release-footer _footer.md --release-header release-note.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
17 changes: 9 additions & 8 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,26 +1,27 @@
module github.com/reddec/trusted-cgi

go 1.19
go 1.21

require (
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137
github.com/alecthomas/units v0.0.0-20231202071711-9a357b53e9c9
github.com/golang-jwt/jwt v3.2.2+incompatible
github.com/google/uuid v1.3.0
github.com/google/uuid v1.5.0
github.com/jessevdk/go-flags v1.5.0
github.com/reddec/dfq v0.0.0-20200905054932-718696ac508f
github.com/reddec/jsonrpc2 v0.1.21
github.com/robfig/cron v1.2.0
github.com/stretchr/testify v1.5.1
github.com/tinylib/msgp v1.1.8
golang.org/x/crypto v0.4.0
github.com/tinylib/msgp v1.1.9
golang.org/x/crypto v0.17.0
)

require (
github.com/davecgh/go-spew v1.1.0 // indirect
github.com/gorilla/websocket v1.5.0 // indirect
github.com/gorilla/websocket v1.5.1 // indirect
github.com/philhofer/fwd v1.1.2 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/sys v0.3.0 // indirect
golang.org/x/term v0.3.0 // indirect
golang.org/x/net v0.19.0 // indirect
golang.org/x/sys v0.15.0 // indirect
golang.org/x/term v0.15.0 // indirect
gopkg.in/yaml.v2 v2.2.8 // indirect
)

0 comments on commit 622a3bf

Please sign in to comment.