Skip to content

Commit 5d87fb3

Browse files
authored
Merge pull request #31 from benjaminbear/bump_golang_1.20
bump dependencies to golang 1.20
2 parents 523a82c + 083c296 commit 5d87fb3

File tree

6 files changed

+88
-98
lines changed

6 files changed

+88
-98
lines changed

Diff for: .github/workflows/build.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
name: 'build go project'
3+
4+
on: [push]
5+
6+
jobs:
7+
build:
8+
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v3
12+
13+
- name: Set up Go
14+
uses: actions/setup-go@v4
15+
with:
16+
go-version: '1.20'
17+
18+
- name: Build
19+
run: |
20+
cd dyndns
21+
go build -v ./...
22+
23+
- name: Test
24+
run: |
25+
cd dyndns
26+
go test -v ./...

Diff for: .travis.yml

-23
This file was deleted.

Diff for: README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
# Dynamic DNS Server for Docker with Web UI written in Go
22

33
![Travis build status](https://travis-ci.com/benjaminbear/docker-ddns-server.svg?branch=master)
4-
![Docker build status](https://img.shields.io/docker/cloud/build/bbaerthlein/docker-ddns-server)
5-
![Docker build automated](https://img.shields.io/docker/cloud/automated/bbaerthlein/docker-ddns-server)
64

75
![GitHub release (latest by date)](https://img.shields.io/github/v/release/benjaminbear/docker-ddns-server)
86
![Go version](https://img.shields.io/github/go-mod/go-version/benjaminbear/docker-ddns-server?filename=dyndns%2Fgo.mod)
97
![License](https://img.shields.io/github/license/benjaminbear/docker-ddns-server)
108

11-
With docker-ddns-server you can setup your own dynamic DNS server. This project is inspired by https://github.com/dprandzioch/docker-ddns . In addition to the original version, you can setup and maintain your dyndns entries via simple web ui.
9+
With docker-ddns-server you can set up your own dynamic DNS server. This project is inspired by https://github.com/dprandzioch/docker-ddns . In addition to the original version, you can setup and maintain your dyndns entries via simple web ui.
1210

1311
<p float="left">
1412
<img src="https://raw.githubusercontent.com/benjaminbear/docker-ddns-server/master/img/addhost.png" width="285">

Diff for: deployment/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.18 as builder
1+
FROM golang:1.20 as builder
22

33
ENV GO111MODULE=on
44
ENV GOPATH=/root/go

Diff for: dyndns/go.mod

+17-16
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,32 @@
11
module github.com/benjaminbear/docker-ddns-server/dyndns
22

3-
go 1.18
3+
go 1.20
44

55
require (
66
github.com/foolin/goview v0.3.0
7-
github.com/go-playground/validator/v10 v10.11.0
7+
github.com/go-playground/validator/v10 v10.14.0
88
github.com/jinzhu/gorm v1.9.16
9-
github.com/labstack/echo/v4 v4.7.2
10-
github.com/labstack/gommon v0.3.1
11-
github.com/tg123/go-htpasswd v1.2.0
9+
github.com/labstack/echo/v4 v4.10.2
10+
github.com/labstack/gommon v0.4.0
11+
github.com/tg123/go-htpasswd v1.2.1
1212
)
1313

1414
require (
1515
github.com/GehirnInc/crypt v0.0.0-20200316065508-bb7000b8a962 // indirect
16-
github.com/go-playground/locales v0.14.0 // indirect
17-
github.com/go-playground/universal-translator v0.18.0 // indirect
16+
github.com/gabriel-vasile/mimetype v1.4.2 // indirect
17+
github.com/go-playground/locales v0.14.1 // indirect
18+
github.com/go-playground/universal-translator v0.18.1 // indirect
1819
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
1920
github.com/jinzhu/inflection v1.0.0 // indirect
20-
github.com/leodido/go-urn v1.2.1 // indirect
21-
github.com/mattn/go-colorable v0.1.12 // indirect
22-
github.com/mattn/go-isatty v0.0.14 // indirect
21+
github.com/leodido/go-urn v1.2.4 // indirect
22+
github.com/mattn/go-colorable v0.1.13 // indirect
23+
github.com/mattn/go-isatty v0.0.17 // indirect
2324
github.com/mattn/go-sqlite3 v1.14.0 // indirect
2425
github.com/valyala/bytebufferpool v1.0.0 // indirect
25-
github.com/valyala/fasttemplate v1.2.1 // indirect
26-
golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e // indirect
27-
golang.org/x/net v0.0.0-20220524220425-1d687d428aca // indirect
28-
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
29-
golang.org/x/text v0.3.7 // indirect
30-
golang.org/x/time v0.0.0-20201208040808-7e3f01d25324 // indirect
26+
github.com/valyala/fasttemplate v1.2.2 // indirect
27+
golang.org/x/crypto v0.7.0 // indirect
28+
golang.org/x/net v0.8.0 // indirect
29+
golang.org/x/sys v0.6.0 // indirect
30+
golang.org/x/text v0.8.0 // indirect
31+
golang.org/x/time v0.3.0 // indirect
3132
)

0 commit comments

Comments
 (0)