File tree Expand file tree Collapse file tree 6 files changed +21
-19
lines changed
Expand file tree Collapse file tree 6 files changed +21
-19
lines changed Original file line number Diff line number Diff line change 1414 - uses : ruby/setup-ruby@v1
1515 with :
1616 bundler-cache : true
17- ruby-version : 3.2.2
17+ ruby-version : 3.4.8
1818 - run : rake spec
Original file line number Diff line number Diff line change 1717 - uses : ruby/setup-ruby@v1
1818 with :
1919 bundler-cache : true
20- ruby-version : 3.2.2
20+ ruby-version : 3.4.8
2121 - run : rake spec
2222
2323 build :
2828 - uses : ruby/setup-ruby@v1
2929 with :
3030 bundler-cache : true
31- ruby-version : 3.2.2
31+ ruby-version : 3.4.8
3232 - run : rake version
3333 - run : rake build
3434 - uses : actions/upload-artifact@v4
Original file line number Diff line number Diff line change 1919 - uses : ruby/setup-ruby@v1
2020 with :
2121 bundler-cache : true
22- ruby-version : 3.2.2
22+ ruby-version : 3.4.8
2323 - run : rake version
2424 - run : rake build
2525 - uses : actions/upload-artifact@v4
4040 - uses : ruby/setup-ruby@v1
4141 with :
4242 bundler-cache : true
43- ruby-version : 3.2.2
43+ ruby-version : 3.4.8
4444 - uses : actions/download-artifact@v4
4545 with :
4646 name : pkg
Original file line number Diff line number Diff line change 1- 2.7.6
1+ 3.4.8
Original file line number Diff line number Diff line change 1- ruby 2.7.6
1+ ruby 3.4.8
Original file line number Diff line number Diff line change 1- FROM ruby:3.2.2 -alpine3.18
1+ FROM ruby:3.4.8 -alpine3.23
22
33ARG TERRAFYING_VERSION=0.0.0
44ENV TERRAFORM_VERSION=1.2.8
55
6- RUN wget -O terraform.zip https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip \
7- && unzip terraform.zip \
8- && install -m 755 terraform /usr/bin/terraform \
9- && install -d ${HOME}/.terraform.d/plugins/linux_amd64 \
10- && rm terraform terraform.zip
6+ RUN apk add --update --no-cache wget
7+
8+ RUN wget -O terraform.zip https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip
9+ RUN unzip terraform.zip
10+ RUN install -m 755 terraform /usr/bin/terraform
11+ RUN install -d ${HOME}/.terraform.d/plugins/linux_amd64
12+ RUN rm terraform terraform.zip
1113
1214COPY pkg /tmp
1315
14- RUN apk add --update --no-cache --virtual .terra-builddeps build-base ruby-dev \
15- && apk add --update --no-cache --virtual .terra-rundeps git bash \
16- && gem install /tmp/terrafying-components-${TERRAFYING_VERSION}.gem \
17- && install -d /terra \
18- && apk del .terra-builddeps \
19- && rm -rf /var/cache/apk/*
16+ RUN apk add --update --no-cache --virtual .terra-builddeps build-base ruby-dev
17+ RUN apk add --update --no-cache --virtual .terra-rundeps git bash
18+ RUN gem install /tmp/terrafying-components-${TERRAFYING_VERSION}.gem
19+ RUN install -d /terra
20+ RUN apk del .terra-builddeps
21+ RUN rm -rf /var/cache/apk/*
2022
2123WORKDIR /terra
2224
You can’t perform that action at this time.
0 commit comments