Closed
Conversation
chore: Configure Renovate See merge request pub/markscribe!1
…lop' chore(deps): update github.com/shurcool/graphql digest to ed46e5a See merge request pub/markscribe!3
…elop' chore(deps): update github.com/shurcool/githubv4 digest to 4829585 See merge request pub/markscribe!2
chore(deps): update module github.com/caarlos0/env/v6 to v11 See merge request pub/markscribe!7
chore(deps): update module golang.org/x/oauth2 to v0.33.0 See merge request pub/markscribe!6
chore(deps): update module github.com/mmcdole/gofeed to v1.3.0 See merge request pub/markscribe!5
chore(deps): update alpine docker tag to v3.23 See merge request pub/markscribe!4
# Conflicts: # Dockerfile diff --git a/Dockerfile b/Dockerfile index 987136d..6f10583 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ -FROM golang:alpine3.20 AS build +FROM docker.io/golang:1.25.5-alpine3.22 AS build WORKDIR /go/markscribe COPY . . RUN go build -FROM alpine:3.23 AS prod +FROM alpine:3.22 AS prod COPY --from=build /go/markscribe/markscribe /go/bin/markscribe ENTRYPOINT ["/go/bin/markscribe"] \ No newline at end of file diff --git a/go.mod b/go.mod index 0e7a5b8..d95a795 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/muesli/markscribe -go 1.25 +go 1.24.5 require ( github.com/KyleBanks/goodreads v0.0.0-20200527082926-28539417959b
chore(deps): update module github.com/stretchr/testify to v1.11.1 See merge request pub/markscribe!16
Merge for major release. See merge request pub/markscribe!18
# Conflicts: # .gitlab/ci/create_docker_release.yml # .gitlab/ci/create_release.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hey Christian,
I noticed a dead lock when I was building a new container image. The function recentStars never returns, since the loop also continues if the found stars are zero.
I also added a method for getting the lastest issues opened by the query user.
Feel free to use it, if interested.
Best regards,
Daniel