File tree Expand file tree Collapse file tree 4 files changed +8
-6
lines changed Expand file tree Collapse file tree 4 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 16
16
- name : Set up Go
17
17
uses : actions/setup-go@v3
18
18
with :
19
- go-version : 1.20.10
19
+ go-version : 1.22.0
20
20
21
21
- name : Download xcaddy
22
22
run : curl -vLO https://github.com/caddyserver/xcaddy/releases/download/v0.3.5/xcaddy_0.3.5_linux_amd64.tar.gz
Original file line number Diff line number Diff line change 1
1
FROM ubuntu:latest
2
2
3
3
ENV XCADDY_VERSION=0.3.5 \
4
- GOLANG_VERSION=20.10 \
4
+ GOLANG_VERSION=22.0 \
5
5
APPPORT=:2011 \
6
- UPLOADER_VERSION=0.15
6
+ UPLOADER_VERSION=0.16
7
7
8
8
COPY docker-files /
9
9
@@ -24,6 +24,8 @@ RUN set -x \
24
24
&& pwd \
25
25
&& mv caddy /usr/local/bin/ \
26
26
&& cd .. \
27
+ && chgrp -R 0 /opt/webroot/ \
28
+ && chmod -R g=u /opt/webroot/ \
27
29
&& apt-get -y autoremove \
28
30
&& apt-get -y autoclean \
29
31
&& rm -rf build /usr/local/go /var/cache/apk/* root/.cache root/go/ \
Original file line number Diff line number Diff line change 1
1
module github.com/git001/caddyv2-upload
2
2
3
- go 1.20
3
+ go 1.22
4
4
5
5
require (
6
- github.com/caddyserver/caddy/v2 v2.7.2
6
+ github.com/caddyserver/caddy/v2 v2.7.6
7
7
github.com/dustin/go-humanize v1.0.1
8
8
github.com/google/uuid v1.3.0
9
9
github.com/pkg/errors v0.9.1
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import (
16
16
)
17
17
18
18
const (
19
- Version = "0.15 "
19
+ Version = "0.16 "
20
20
)
21
21
22
22
func init () {
You can’t perform that action at this time.
0 commit comments