Skip to content

Commit

Permalink
Merge branch 'main' into CI-2493-latest-atlantis-changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ijames-gc committed Feb 9, 2024
2 parents 0b4aade + 21bdec2 commit 8567a60
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ARG DEFAULT_CONFTEST_VERSION=0.44.1

# Stage 1: build artifact and download deps

FROM golang:1.21.6-alpine AS builder
FROM golang:1.22.0-alpine AS builder

ARG ATLANTIS_VERSION=dev
ENV ATLANTIS_VERSION=${ATLANTIS_VERSION}
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ services:
- redis
build:
context: .
dockerfile: Dockerfile.dev
dockerfile: _Dockerfile.dev
ports:
- 4141:4141
volumes:
Expand Down
2 changes: 1 addition & 1 deletion server/core/db/boltdb.go
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ func (b *BoltDB) List() ([]models.ProjectLock, error) {
for k, v := range locksBytes {
var lock models.ProjectLock
if err := json.Unmarshal(v, &lock); err != nil {
return locks, errors.Wrap(err, fmt.Sprintf("failed to deserialize lock at key '%d'", k))
return locks, errors.Wrap(err, fmt.Sprintf("failed to deserialize lock at key %q", fmt.Sprint(k)))
}
locks = append(locks, lock)
}
Expand Down
4 changes: 4 additions & 0 deletions server/events/mock_workingdir_test.go

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

4 changes: 4 additions & 0 deletions server/events/mocks/mock_working_dir.go

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

0 comments on commit 8567a60

Please sign in to comment.