File tree 5 files changed +6
-61
lines changed
5 files changed +6
-61
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 13
13
- name : Set up Go 1.x
14
14
uses : actions/setup-go@v2
15
15
with :
16
- go-version : ^1.15
16
+ go-version : ^1.16
17
17
- name : Get dependencies
18
18
run : go get -v -t -d ./...
19
19
- name : Build
@@ -82,14 +82,15 @@ jobs:
82
82
- name : Retrieve tag
83
83
id : tagref
84
84
run : echo ::set-output name=tag::${GITHUB_REF#refs/*/}
85
- - uses : wangyoucao577/go-release-action@v1.11
85
+ - uses : wangyoucao577/go-release-action@v1.18
86
86
with :
87
87
github_token : ${{ secrets.GH_TOKEN }}
88
88
goos : linux
89
89
goarch : amd64
90
- goversion : ' 1.15 '
90
+ goversion : ' 1.16 '
91
91
project_path : cmd/${{ matrix.target }}
92
92
binary_name : ${{ matrix.target }}
93
93
extra_files : LICENSE README.md
94
94
release_tag : ${{ steps.tagref.outputs.tag }}
95
95
ldflags : -X github.com/eexit/http2smtp/internal/api.Version=${{ steps.tagref.outputs.tag }}+${{ github.sha }}
96
+ executable_compression : upx
Original file line number Diff line number Diff line change 1
1
FROM eexit/curl-healthchecker:v1.0.0 AS curl
2
2
3
- FROM golang:1 AS builder
3
+ FROM golang:1.16 AS builder
4
4
RUN apt-get update -y \
5
5
&& apt-get install -y upx \
6
6
&& update-ca-certificates
Original file line number Diff line number Diff line change 1
1
module github.com/eexit/http2smtp
2
2
3
- go 1.15
3
+ go 1.16
4
4
5
5
require (
6
6
github.com/aws/aws-lambda-go v1.22.0
You can’t perform that action at this time.
0 commit comments