Skip to content

Commit 5c11e2e

Browse files
chore: update dependencies (#285) (#286)
- Update AWS SDK packages from 3.971.0 to 3.987.0 - Update Babel packages from 7.28.x to 7.29.x - Update @types/node from 24.10.9 to 24.10.13 - Update prettier from 3.8.0 to 3.8.1 - Update typescript-eslint from 8.53.1 to 8.55.0 - Update ci-info from 4.3.1 to 4.4.0 - Update semver from 7.7.3 to 7.7.4 - Update esbuild from 0.27.2 to 0.27.3 - Update diff from 5.2.0 to 5.2.2 - Update strnum from 2.1.1 to 2.1.2 - Remove unused aws-lambda and esbuild-jest dependencies - Update Makefile unit-test targets to use 'pnpm run unit' Resolves #285
1 parent 8aa105c commit 5c11e2e

File tree

13 files changed

+910
-2452
lines changed

13 files changed

+910
-2452
lines changed

.github/workflows/auto_assign.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@ on:
33
pull_request:
44
types: [opened, ready_for_review]
55

6-
permissions:
7-
pull-requests: write
8-
96
jobs:
107
add-reviews:
118
runs-on: ubuntu-latest
9+
permissions:
10+
pull-requests: write
1211
steps:
1312
- uses: kentaro-m/auto-assign-action@v2.0.1

.github/workflows/build_test.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ on:
1010
- 'unicorn_web/**'
1111

1212
permissions:
13-
id-token: write
1413
contents: read
1514

1615
jobs:
@@ -37,7 +36,7 @@ jobs:
3736

3837
- run: echo "**** Setup Python ****"
3938
- name: Setup Python
40-
uses: actions/setup-python@v6
39+
uses: actions/setup-python@v6.2.0
4140
with:
4241
python-version: ${{ env.PYTHON_VERSION }}
4342
- run: python --version
@@ -54,7 +53,7 @@ jobs:
5453
- run: 'echo "NodeJS version: $(node --version)"'
5554

5655
- run: echo "**** Setup pnpm ****"
57-
- uses: pnpm/action-setup@v4
56+
- uses: pnpm/action-setup@v4.2.0
5857
with:
5958
version: 10
6059
- run: 'echo "pnpm version: $(pnpm --version)"'

.github/workflows/label_pr_on_title.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@ on:
66
types:
77
- completed
88

9-
permissions:
10-
pull-requests: write
11-
129
jobs:
1310
get_pr_details:
1411
# Guardrails to only ever run if PR recording workflow was indeed
@@ -23,6 +20,8 @@ jobs:
2320
label_pr:
2421
needs: get_pr_details
2522
runs-on: ubuntu-latest
23+
permissions:
24+
pull-requests: write
2625
steps:
2726
- name: Checkout repository
2827
uses: actions/checkout@v6

.github/workflows/on_merged_pr.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@ on:
66
types:
77
- completed
88

9-
permissions:
10-
issues: write
11-
129
jobs:
1310
get_pr_details:
1411
if: github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success'
@@ -22,6 +19,8 @@ jobs:
2219
needs: get_pr_details
2320
runs-on: ubuntu-latest
2421
if: needs.get_pr_details.outputs.prIsMerged == 'true'
22+
permissions:
23+
issues: write
2524
steps:
2625
- uses: actions/checkout@v6
2726
- name: "Label PR related issue for release"

.github/workflows/on_opened_pr.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@ on:
66
types:
77
- completed
88

9-
permissions:
10-
pull-requests: write
11-
129
jobs:
1310
get_pr_details:
1411
if: ${{ github.event.workflow_run.conclusion == 'success' }}
@@ -21,6 +18,8 @@ jobs:
2118
check_related_issue:
2219
needs: get_pr_details
2320
runs-on: ubuntu-latest
21+
permissions:
22+
pull-requests: write
2423
steps:
2524
- uses: actions/checkout@v6
2625
- name: "Ensure related issue is present"
@@ -38,6 +37,8 @@ jobs:
3837
check_acknowledge_section:
3938
needs: get_pr_details
4039
runs-on: ubuntu-latest
40+
permissions:
41+
pull-requests: write
4142
steps:
4243
- uses: actions/checkout@v6
4344
- name: "Ensure acknowledgement section is present"

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
"@eslint/js": "^9.39.2",
77
"eslint": "^9.39.2",
88
"eslint-config-prettier": "^10.1.8",
9-
"globals": "^16.5.0",
9+
"globals": "^17.3.0",
1010
"husky": "^9.1.7",
11-
"prettier": "^3.8.0",
12-
"typescript-eslint": "^8.53.1"
11+
"prettier": "^3.8.1",
12+
"typescript-eslint": "^8.55.0"
1313
}
1414
}

0 commit comments

Comments
 (0)