Skip to content

Commit 369fd65

Browse files
authored
Deploy: 2026-01-16
Deploy: 2026-01-16
2 parents 4a727b2 + 5e55d79 commit 369fd65

File tree

9 files changed

+77
-92
lines changed

9 files changed

+77
-92
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
--health-retries 5
2323
2424
steps:
25-
- uses: actions/checkout@v5
25+
- uses: actions/checkout@v6
2626

2727
- name: Set up Ruby
2828
uses: ruby/setup-ruby@v1
@@ -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@v5
66+
uses: actions/upload-artifact@v6
6767
if: failure()
6868
with:
6969
name: screenshots

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
run: echo "Deploying to ${{ needs.determine_environment.outputs.env_name }}"
5353

5454
- name: Checkout
55-
uses: actions/checkout@v5
55+
uses: actions/checkout@v6
5656

5757
- name: Debug OIDC claims
5858
run: |

.github/workflows/eval.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
matrix: ${{ steps.set-matrix.outputs.matrix }}
5353
runs: ${{ steps.set-runs.outputs.runs }}
5454
steps:
55-
- uses: actions/checkout@v5
55+
- uses: actions/checkout@v6
5656
- name: Debug OIDC claims
5757
run: |
5858
echo "GitHub repository: ${{ github.repository }}"
@@ -188,7 +188,7 @@ jobs:
188188
run: ${{ fromJson(needs.build.outputs.runs) }}
189189
max-parallel: 10
190190
steps:
191-
- uses: actions/checkout@v5
191+
- uses: actions/checkout@v6
192192
- name: Configure AWS credentials
193193
uses: aws-actions/configure-aws-credentials@v5
194194
with:

.github/workflows/plan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
run: echo "Tofu config directory ./terraform/config/${{ github.event.inputs.environment }}"
2828

2929
- name: Checkout
30-
uses: actions/checkout@v5
30+
uses: actions/checkout@v6
3131

3232
- name: Configure AWS credentials
3333
uses: aws-actions/configure-aws-credentials@v5

.github/workflows/python_components.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
build:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818
with:
1919
fetch-depth: 0
2020
- name: Set up Python 3.12

Gemfile

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ gem "chartkick"
1616

1717
gem "tzinfo-data", platforms: %i[windows jruby]
1818

19-
gem "solid_cache"
20-
2119
gem "bootsnap", require: false
2220
gem "thruster", require: false
2321

@@ -57,15 +55,13 @@ group :test do
5755
end
5856

5957
gem "bcrypt", "~> 3.1"
60-
gem "aws-sdk-s3", "~> 1.202" # For S3 versioning support
58+
gem "aws-sdk-s3", "~> 1.208" # For S3 versioning support
6159
gem "aws-sdk-secretsmanager"
6260
gem "aws-sdk-lambda"
6361
gem "aws-sigv4"
64-
gem "aws-sdk-ses"
6562

6663
# API and Documentation
6764
gem "grape", "~> 2.4"
6865
gem "grape-swagger"
6966

70-
gem "paper_trail", "~> 16.0"
71-
gem "tailwindcss-ruby", "~> 4.1"
67+
gem "paper_trail", "~> 17.0"

0 commit comments

Comments
 (0)