Skip to content

Commit 1430a62

Browse files
Merge branch 'main' into dependabot/github_actions/actions/checkout-6
2 parents e8618a7 + d89c97c commit 1430a62

File tree

16 files changed

+10104
-173
lines changed

16 files changed

+10104
-173
lines changed

.github/workflows/bootstrap.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
terraform_wrapper: false
3737

3838
- name: Configure AWS credentials
39-
uses: aws-actions/configure-aws-credentials@v4
39+
uses: aws-actions/configure-aws-credentials@v6
4040
with:
4141
role-to-assume: ${{ secrets.TERRAFORM_ROLE_ARN }}
4242
role-session-name: githubBootstrapWorkflow

.github/workflows/deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
terraform_wrapper: false
4040

4141
- name: Configure AWS credentials
42-
uses: aws-actions/configure-aws-credentials@v4
42+
uses: aws-actions/configure-aws-credentials@v6
4343
with:
4444
role-to-assume: ${{ secrets.TERRAFORM_ROLE_ARN }}
4545
role-session-name: githubDeploymentWorkflow

.github/workflows/docker-image-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888

8989
- name: Configure APHL AWS credentials
9090
if: ${{ matrix.name != 'index' }}
91-
uses: aws-actions/configure-aws-credentials@v4
91+
uses: aws-actions/configure-aws-credentials@v6
9292
with:
9393
aws-access-key-id: ${{ secrets.APHL_AWS_ACCESS_KEY_ID }}
9494
aws-secret-access-key: ${{ secrets.APHL_AWS_SECRET_ACCESS_KEY }}

.pre-commit-config.yaml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,18 @@ repos:
1111
- --unsafe
1212

1313
- repo: https://github.com/astral-sh/ruff-pre-commit
14-
rev: v0.14.2 # Ruff version
14+
rev: v0.15.7 # Ruff version
1515
hooks:
1616
- id: ruff-check # Run the linter
1717
args: [--fix]
1818
- id: ruff-format # Run the formatter
1919

2020
- repo: https://github.com/JoC0de/pre-commit-prettier
21-
rev: v3.6.2
21+
rev: v3.8.1
2222
hooks:
2323
- id: prettier
24+
25+
- repo: https://github.com/ComPWA/taplo-pre-commit
26+
rev: v0.9.3
27+
hooks:
28+
- id: taplo-format

.taplo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[formatting]
2+
reorder_arrays = true
3+
reorder_inline_tables = true

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"@types/react-syntax-highlighter": "^15.5.13",
4444
"@typescript-eslint/parser": "^8.56.1",
4545
"@vitejs/plugin-react": "^5.1.4",
46-
"@vitest/coverage-v8": "^4.0.18",
46+
"@vitest/coverage-v8": "^3",
4747
"eslint": "^9.36.0",
4848
"eslint-config-prettier": "^10.1.8",
4949
"eslint-import-resolver-typescript": "^4.4.4",

0 commit comments

Comments
 (0)