Skip to content

Commit

Permalink
1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
anton-yurchenko committed Aug 1, 2021
1 parent 8393d9b commit 1b2120f
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 9 deletions.
2 changes: 2 additions & 0 deletions .bump
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[docker]
enabled = true
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
## [1.0.3] - 2021-08-01
### Changed
- Upgrade dependencies

## [1.0.2] - 2021-06-02
### Changed
- Upgrade dependencies

## [1.0.1](https://github.com/ReasonSoftware/action-notify-slack/releases/tag/v1.0.1) - 2021-05-01
## [1.0.1] - 2021-05-01
- First release

## [1.0.0] - 2021-02-14
- First release

[1.0.3]: https://github.com/ReasonSoftware/action-notify-slack/compare/v1.0.2...v1.0.3
[1.0.2]: https://github.com/ReasonSoftware/action-notify-slack/compare/v1.0.1...v1.0.2
[1.0.1]: https://github.com/ReasonSoftware/action-notify-slack/compare/v1.0.0...v1.0.1
[1.0.0]: https://github.com/ReasonSoftware/action-notify-slack/releases/tag/v1.0.0
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ RUN CGO_ENABLED=0 go build -ldflags="-w -s" -o /opt/action-notify-slack

FROM scratch
LABEL "repository"="https://github.com/ReasonSoftware/action-notify-slack"
LABEL "version"="1.0.2"
LABEL "version"="1.0.3"
COPY --from=build /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
COPY --from=build /etc/passwd /etc/passwd
COPY LICENSE.md /LICENSE.md
COPY --from=build --chown=1000:0 /opt/action-notify-slack /app
ENTRYPOINT [ "/app" ]
ENTRYPOINT [ "/app" ]
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ init:
@rm -f go.mod
@rm -f go.sum
@rm -rf ./vendor
@go mod init $$(pwd | awk -F'/' '{print "github.com/"$$(NF-1)"/"$$NF}')
@go mod init $$(pwd | awk -F'/' '{print $$NF}')

GO_LINTER := $(GO_BIN_DIR)/golangci-lint
$(GO_LINTER):
Expand Down
6 changes: 4 additions & 2 deletions app_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@ import (
"testing"
"time"

app "github.com/ReasonSoftware/action-notify-slack"
"github.com/ReasonSoftware/action-notify-slack/mocks"
app "action-notify-slack"

"action-notify-slack/mocks"

"github.com/pkg/errors"
"github.com/slack-go/slack"
"github.com/stretchr/testify/assert"
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/ReasonSoftware/action-notify-slack
module action-notify-slack

go 1.15
go 1.16

require (
github.com/pkg/errors v0.9.1
Expand Down
3 changes: 2 additions & 1 deletion main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ import (
"os"
"testing"

app "github.com/ReasonSoftware/action-notify-slack"
app "action-notify-slack"

"github.com/slack-go/slack"
"github.com/stretchr/testify/assert"
)
Expand Down

0 comments on commit 1b2120f

Please sign in to comment.