This repository was archived by the owner on Feb 17, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +29
-6
lines changed
Expand file tree Collapse file tree 3 files changed +29
-6
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,11 @@ updates:
1717 schedule :
1818 interval : " weekly"
1919
20+ - package-ecosystem : " docker"
21+ directory : " /build"
22+ schedule :
23+ interval : " weekly"
24+
2025 # Maintain dependencies for GitHub Actions
2126 - package-ecosystem : " github-actions"
2227 directory : " /"
Original file line number Diff line number Diff line change @@ -11,13 +11,13 @@ jobs:
1111 ci-build :
1212 runs-on : ubuntu-latest
1313 steps :
14- - uses : actions/checkout@v3
15- - uses : actions/setup-go@v3
14+ - uses : actions/checkout@v3.0.2
15+ - uses : actions/setup-go@v3.3.0
1616 with :
1717 go-version : 1.18
1818 - run : ./goyek.sh
19- - name : Upload coverage
20- uses : actions/upload-artifact@v3
19+ - name : Upload HTML coverage
20+ uses : actions/upload-artifact@v3.1.0
2121 with :
2222 name : coverage
2323 path : coverage.*
3535 - ' 1.19'
3636 runs-on : ubuntu-latest
3737 steps :
38- - uses : actions/checkout@v3
39- - uses : actions/setup-go@v3
38+ - uses : actions/checkout@v3.0.2
39+ - uses : actions/setup-go@v3.3.0
4040 with :
4141 go-version : ${{ matrix.go-version }}
4242 - run : go test -race ./...
Original file line number Diff line number Diff line change 1+ name : release
2+
3+ on :
4+ push :
5+ tags : [ 'v*' ]
6+
7+ jobs :
8+ godoc :
9+ runs-on : ubuntu-latest
10+ steps :
11+ 12+ with :
13+ go-version : ' 1.19'
14+ - name : Wait 1 minute
15+ # make sure that new the tag is available for pkg.go.dev
16+ run : sleep 60
17+ - name : Update pkg.go.dev
18+ run : go get -u github.com/${{ github.repository }}@${{ github.ref_name }}
You can’t perform that action at this time.
0 commit comments