Skip to content

Commit

Permalink
switch to Alpine 3.14.2 (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyam8 authored Oct 4, 2021
1 parent 8c3bfce commit 4a85bcf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jobs:
test:
strategy:
matrix:
go-version: [1.16.x]
go-version: [1.17.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: '1.16.x'
go-version: '1.17.x'
- name: Checkout
uses: actions/checkout@master
- name: Set up image tag
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ COPY . .

RUN CGO_ENABLED=0 go build -ldflags="-w -s" -o agent_sd github.com/netdata/sd/cmd/sd

FROM alpine:3.12.0
FROM alpine:3.14.2

COPY --from=builder /app/agent_sd /app/

Expand Down
2 changes: 1 addition & 1 deletion pipeline/export/manager_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ func TestManager_Export(t *testing.T) {

wg.Add(1)
go func() {
wg.Done()
defer wg.Done()
mgr.Export(ctx, out)
}()

Expand Down

0 comments on commit 4a85bcf

Please sign in to comment.