Skip to content

Commit 1c3692f

Browse files
authored
Merge pull request #406 from codeforamerica/dev
Deploy: 2026-04-07
2 parents d568586 + 04d2546 commit 1c3692f

12 files changed

Lines changed: 287 additions & 506 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
run: bundle exec rspec spec/features
6464

6565
- name: Keep screenshots from failed system tests
66-
uses: actions/upload-artifact@v6
66+
uses: actions/upload-artifact@v7
6767
if: failure()
6868
with:
6969
name: screenshots

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
echo "Repository ref: repo:${{ github.repository }}:ref:${{ github.ref }}"
7373
7474
- name: Configure AWS credentials
75-
uses: aws-actions/configure-aws-credentials@v5
75+
uses: aws-actions/configure-aws-credentials@v6
7676
with:
7777
role-to-assume: ${{ vars.AWS_ROLE_ARN }}
7878
aws-region: ${{ vars.AWS_REGION }}
@@ -133,7 +133,7 @@ jobs:
133133
--overwrite
134134
135135
- name: Setup OpenTofu
136-
uses: opentofu/setup-opentofu@v1
136+
uses: opentofu/setup-opentofu@v2
137137

138138
- name: Initialize OpenTofu
139139
working-directory: ./terraform/config/${{ needs.determine_environment.outputs.env_name }}
@@ -145,7 +145,7 @@ jobs:
145145

146146
- name: Debug deployment failure
147147
if: failure() && steps.deploy.outcome == 'failure'
148-
uses: aws-actions/configure-aws-credentials@v5
148+
uses: aws-actions/configure-aws-credentials@v6
149149
with:
150150
role-to-assume: ${{ vars.AWS_ROLE_ARN }}
151151
aws-region: ${{ vars.AWS_REGION }}

.github/workflows/eval.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
7474
- name: Configure AWS credentials
7575
if: ${{ github.event.inputs.should_rebuild_images == 'true' }}
76-
uses: aws-actions/configure-aws-credentials@v5
76+
uses: aws-actions/configure-aws-credentials@v6
7777
with:
7878
role-to-assume: ${{ vars.AWS_ROLE_ARN }}
7979
aws-region: ${{ vars.AWS_REGION }}
@@ -190,7 +190,7 @@ jobs:
190190
steps:
191191
- uses: actions/checkout@v6
192192
- name: Configure AWS credentials
193-
uses: aws-actions/configure-aws-credentials@v5
193+
uses: aws-actions/configure-aws-credentials@v6
194194
with:
195195
role-to-assume: ${{ vars.AWS_ROLE_ARN }}
196196
aws-region: ${{ vars.AWS_REGION }}

.github/workflows/plan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
uses: actions/checkout@v6
3131

3232
- name: Configure AWS credentials
33-
uses: aws-actions/configure-aws-credentials@v5
33+
uses: aws-actions/configure-aws-credentials@v6
3434
with:
3535
role-to-assume: ${{ vars.AWS_ROLE_ARN }}
3636
aws-region: ${{ vars.AWS_REGION }}
@@ -44,7 +44,7 @@ jobs:
4444
uses: aws-actions/amazon-ecr-login@v2
4545

4646
- name: Setup OpenTofu
47-
uses: opentofu/setup-opentofu@v1
47+
uses: opentofu/setup-opentofu@v2
4848

4949
- name: Initialize OpenTofu
5050
working-directory: ./terraform/config/${{ github.event.inputs.environment }}

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ ARG YARN_VERSION=1.22.22
3939
ENV PATH=/usr/local/node/bin:$PATH
4040
RUN curl -sL https://github.com/nodenv/node-build/archive/master.tar.gz | tar xz -C /tmp/ && \
4141
/tmp/node-build-master/bin/node-build "${NODE_VERSION}" /usr/local/node && \
42-
npm install -g yarn@$YARN_VERSION tailwindcss@3.4.1 && \
42+
npm install -g yarn@$YARN_VERSION tailwindcss@3.4.19 && \
4343
rm -rf /tmp/node-build-master
4444

4545
# Install application gems

Gemfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
source "https://rubygems.org"
22

3-
gem "rails", "~> 8.1.1"
3+
gem "rails", "~> 8.1.3"
44
gem "propshaft"
55
gem "pg"
66
gem "puma", ">= 5.0"
@@ -17,12 +17,12 @@ gem "chartkick"
1717
gem "tzinfo-data", platforms: %i[windows jruby]
1818

1919
gem "bootsnap", require: false
20-
gem "thruster", require: false
20+
gem "thruster", "= 0.1.15", require: false
2121

2222
gem "view_component", "~> 4.1"
2323
gem "kaminari", "~> 1.2"
2424

25-
gem "devise", "~> 4.9.4"
25+
gem "devise", "~> 5.0"
2626
gem "activerecord-session_store"
2727

2828
group :development, :test do

0 commit comments

Comments
 (0)