Skip to content

Commit 0753c75

Browse files
authored
Merge branch 'main' into dependabot/github_actions/actions/setup-node-4.4.0
2 parents b0ee406 + a7f5d2d commit 0753c75

File tree

6 files changed

+101
-62
lines changed

6 files changed

+101
-62
lines changed

.github/workflows/package.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
runs-on: ubuntu-latest
4343
permissions: {}
4444
steps:
45-
- uses: actions/setup-java@7a6d8a8234af8eb26422e24e3006232cccaa061b
45+
- uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00
4646
with:
4747
distribution: temurin
4848
java-version: 11.x
@@ -63,7 +63,7 @@ jobs:
6363
runs-on: ubuntu-latest
6464
permissions: {}
6565
steps:
66-
- uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55
66+
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065
6767
with:
6868
python-version: 3.x
6969
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020
@@ -104,7 +104,7 @@ jobs:
104104
runs-on: ubuntu-latest
105105
permissions: {}
106106
steps:
107-
- uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b
107+
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5
108108
with:
109109
go-version: ^1.16.0
110110
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020

.github/workflows/pull-request-lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
revert
3636
style
3737
requireScope: false
38-
- uses: marocchino/sticky-pull-request-comment@52423e01640425a022ef5fd42c6fb5f633a02728
38+
- uses: marocchino/sticky-pull-request-comment@67d0dec7b07ed060a405f9b2a64b8ab319fdd7db
3939
# When the previous steps fails, the workflow would stop. By adding this
4040
# condition you can continue the execution with the populated error message.
4141
if: always() && (steps.lint_pr_title.outputs.error_message != null)
@@ -53,7 +53,7 @@ jobs:
5353
```
5454
# Delete a previous comment when the issue has been resolved
5555
- if: ${{ steps.lint_pr_title.outputs.error_message == null }}
56-
uses: marocchino/sticky-pull-request-comment@52423e01640425a022ef5fd42c6fb5f633a02728
56+
uses: marocchino/sticky-pull-request-comment@67d0dec7b07ed060a405f9b2a64b8ab319fdd7db
5757
with:
5858
header: pr-title-lint-error
5959
delete: true

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ jobs:
2828
with:
2929
distribution: temurin
3030
java-version: 11.x
31-
- uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55
31+
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065
3232
name: Setup Python
3333
with:
3434
python-version: 3.x
3535
- uses: actions/setup-dotnet@67a3573c9a986a3f9c594539f4ab511d57bb3ce9
3636
name: Setup .NET
3737
with:
3838
dotnet-version: 9.0.x
39-
- uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b
39+
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5
4040
name: Setup Go
4141
with:
4242
go-version: ^1.16.0
@@ -99,7 +99,7 @@ jobs:
9999
contents: read
100100
issues: write
101101
steps:
102-
- uses: actions/setup-java@7a6d8a8234af8eb26422e24e3006232cccaa061b
102+
- uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00
103103
with:
104104
distribution: temurin
105105
java-version: 11.x
@@ -144,7 +144,7 @@ jobs:
144144
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020
145145
with:
146146
node-version: 18.x
147-
- uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55
147+
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065
148148
with:
149149
python-version: 3.x
150150
- name: Download build artifacts
@@ -233,7 +233,7 @@ jobs:
233233
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020
234234
with:
235235
node-version: 18.x
236-
- uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b
236+
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5
237237
with:
238238
go-version: ^1.16.0
239239
- name: Download build artifacts

examples/mern-cdk-ci-cd/cdk-pipeline/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"typescript": "~4.9.4"
2121
},
2222
"dependencies": {
23-
"aws-cdk-lib": "2.187.0",
23+
"aws-cdk-lib": "2.189.1",
2424
"constructs": "^10.0.0",
2525
"source-map-support": "^0.5.21"
2626
}

examples/mern-cdk-ci-cd/mern/client/package-lock.json

Lines changed: 89 additions & 50 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/mern-cdk-ci-cd/mern/client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"cypress": "^9.2.0",
1111
"react": "^17.0.2",
1212
"react-dom": "^17.0.2",
13-
"react-router-dom": "^6.2.1",
13+
"react-router-dom": "^7.5.2",
1414
"react-scripts": "5.0.1",
1515
"web-vitals": "^1.0.1"
1616
},

0 commit comments

Comments
 (0)