Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies #438

Merged
merged 10 commits into from
Jul 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .github/workflows/go-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ concurrency:

jobs:
go-check:
uses: ipdxco/unified-github-workflows/.github/workflows/go-check.yml@v0.0
uses: ipdxco/unified-github-workflows/.github/workflows/go-check.yml@v1.0
2 changes: 1 addition & 1 deletion .github/workflows/go-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ concurrency:

jobs:
go-test:
uses: ipdxco/unified-github-workflows/.github/workflows/go-test.yml@v1.0.2
uses: ipdxco/unified-github-workflows/.github/workflows/go-test.yml@v1.0
2 changes: 1 addition & 1 deletion .github/workflows/releaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ concurrency:

jobs:
releaser:
uses: ipdxco/unified-github-workflows/.github/workflows/releaser.yml@v0.0
uses: ipdxco/unified-github-workflows/.github/workflows/releaser.yml@v1.0
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM golang:1.20-bookworm as builder
FROM golang:1.22-bullseye as builder
WORKDIR /app
COPY go.* ./
RUN go mod download
COPY . ./
RUN go build -o singularity .
FROM debian:bookworm-slim
RUN set -x && apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
ca-certificates curl && \
FROM debian:bullseye-slim
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y ca-certificates curl && \
rm -rf /var/lib/apt/lists/*

COPY --from=builder /app/singularity /app/singularity
Expand Down
28 changes: 27 additions & 1 deletion client/swagger/http/admin/admin_client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 11 additions & 6 deletions client/swagger/http/admin/set_identity_responses.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 27 additions & 1 deletion client/swagger/http/deal/deal_client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 13 additions & 6 deletions client/swagger/http/deal/list_deals_responses.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 13 additions & 6 deletions client/swagger/http/deal/send_manual_responses.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 13 additions & 6 deletions client/swagger/http/deal_schedule/create_schedule_responses.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading