Skip to content

Commit 970d41e

Browse files
committed
Merge branch 'release/0.5.3'
2 parents d823a42 + c6bf66b commit 970d41e

File tree

3 files changed

+21
-20
lines changed

3 files changed

+21
-20
lines changed

.github/workflows/push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
run: bundle exec rake test
3939

4040
- name: Send test coverage to CodeClimate
41-
uses: paambaati/codeclimate-action@v8.0.0
41+
uses: paambaati/codeclimate-action@v9.0.0
4242
if: ${{ env.CC_TEST_REPORTER_ID }}
4343
with:
4444
coverageCommand: true

Dockerfile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:3.3.4-alpine AS Builder
1+
FROM ruby:3.3.4-alpine AS builder
22
RUN apk add --no-cache build-base
33

44
WORKDIR /forecast-collector
@@ -15,21 +15,21 @@ LABEL maintainer="[email protected]"
1515
RUN apk add --no-cache tzdata
1616

1717
# Decrease memory usage
18-
ENV MALLOC_ARENA_MAX 2
18+
ENV MALLOC_ARENA_MAX=2
1919

2020
# Move build arguments to environment variables
2121
ARG BUILDTIME
22-
ENV BUILDTIME ${BUILDTIME}
22+
ENV BUILDTIME=${BUILDTIME}
2323

2424
ARG VERSION
25-
ENV VERSION ${VERSION}
25+
ENV VERSION=${VERSION}
2626

2727
ARG REVISION
28-
ENV REVISION ${REVISION}
28+
ENV REVISION=${REVISION}
2929

3030
WORKDIR /forecast-collector
3131

32-
COPY --from=Builder /usr/local/bundle/ /usr/local/bundle/
32+
COPY --from=builder /usr/local/bundle/ /usr/local/bundle/
3333
COPY . /forecast-collector/
3434

35-
ENTRYPOINT bundle exec app/main.rb
35+
ENTRYPOINT ["bundle", "exec", "app/main.rb"]

Gemfile.lock

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,27 +11,27 @@ GEM
1111
bigdecimal
1212
rexml
1313
csv (3.3.0)
14-
docile (1.4.0)
14+
docile (1.4.1)
1515
dotenv (3.1.2)
16-
hashdiff (1.1.0)
16+
hashdiff (1.1.1)
1717
influxdb-client (3.1.0)
1818
json (2.7.2)
1919
language_server-protocol (3.17.0.3)
20-
minitest (5.24.1)
20+
minitest (5.25.1)
2121
minitest-silence (0.2.4)
2222
minitest (~> 5.12)
23-
parallel (1.25.1)
24-
parser (3.3.4.0)
23+
parallel (1.26.3)
24+
parser (3.3.4.2)
2525
ast (~> 2.4.1)
2626
racc
27-
public_suffix (6.0.0)
28-
racc (1.8.0)
27+
public_suffix (6.0.1)
28+
racc (1.8.1)
2929
rainbow (3.1.1)
3030
rake (13.2.1)
3131
regexp_parser (2.9.2)
32-
rexml (3.3.1)
32+
rexml (3.3.6)
3333
strscan
34-
rubocop (1.65.0)
34+
rubocop (1.65.1)
3535
json (~> 2.3)
3636
language_server-protocol (>= 3.17.0)
3737
parallel (~> 1.10)
@@ -42,7 +42,7 @@ GEM
4242
rubocop-ast (>= 1.31.1, < 2.0)
4343
ruby-progressbar (~> 1.7)
4444
unicode-display_width (>= 2.4.0, < 3.0)
45-
rubocop-ast (1.31.3)
45+
rubocop-ast (1.32.1)
4646
parser (>= 3.3.1.0)
4747
rubocop-minitest (0.35.1)
4848
rubocop (>= 1.61, < 2.0)
@@ -61,7 +61,8 @@ GEM
6161
simplecov_json_formatter (0.1.4)
6262
strscan (3.1.0)
6363
unicode-display_width (2.5.0)
64-
vcr (6.2.0)
64+
vcr (6.3.1)
65+
base64
6566
webmock (3.23.1)
6667
addressable (>= 2.8.0)
6768
crack (>= 0.3.2)
@@ -88,4 +89,4 @@ DEPENDENCIES
8889
webmock
8990

9091
BUNDLED WITH
91-
2.5.15
92+
2.5.18

0 commit comments

Comments
 (0)