Skip to content

Commit 56c573b

Browse files
Merge branch 'main' into ddbec-with-sdk-v2
2 parents 3cb8a96 + 0d2622c commit 56c573b

89 files changed

Lines changed: 2466 additions & 659 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/check-files.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
# to add more allowlisted approvers just modify this env variable
1717
maintainers: seebees, texastony, ShubhamChaturvedi7, lucasmcdonald3, josecorella, rishav-karanjit, antonf-amzn, kessplas
1818
steps:
19-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v6
2020
with:
2121
fetch-depth: 0
2222

.github/workflows/check_only_key_word.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
issues: write
1414
pull-requests: write
1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717
with:
1818
fetch-depth: 0
1919

.github/workflows/ci_codegen.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ on:
1010

1111
jobs:
1212
code-generation:
13+
permissions:
14+
contents: read
15+
pull-requests: write
16+
id-token: write
1317
strategy:
1418
fail-fast: false
1519
matrix:
@@ -31,7 +35,7 @@ jobs:
3135
run: |
3236
git config --global core.longpaths true
3337
34-
- uses: actions/checkout@v5
38+
- uses: actions/checkout@v6
3539
with:
3640
submodules: recursive
3741
- run: git submodule update --init --recursive submodules/smithy-dafny

.github/workflows/ci_duvet.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,13 @@ on:
1111

1212
jobs:
1313
duvet:
14+
permissions:
15+
contents: read
16+
pull-requests: write
17+
id-token: write
1418
runs-on: ubuntu-22.04
1519
steps:
16-
- uses: actions/checkout@v5
20+
- uses: actions/checkout@v6
1721

1822
- name: Install duvet
1923
shell: bash

.github/workflows/ci_examples_java.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
role-to-assume: arn:aws:iam::370957321024:role/GitHub-CI-DDBEC-Dafny-Role-us-west-2
4343
role-session-name: DDBEC-Dafny-Java-Tests
4444

45-
- uses: actions/checkout@v5
45+
- uses: actions/checkout@v6
4646
with:
4747
submodules: recursive
4848

.github/workflows/ci_examples_net.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
DOTNET_CLI_TELEMETRY_OPTOUT: 1
3737
DOTNET_NOLOGO: 1
3838
steps:
39-
- uses: actions/checkout@v5
39+
- uses: actions/checkout@v6
4040
with:
4141
submodules: recursive
4242

.github/workflows/ci_static_analysis.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,16 @@ on:
99

1010
jobs:
1111
not-grep:
12+
permissions:
13+
contents: read
14+
pull-requests: write
15+
id-token: write
1216
runs-on: ubuntu-22.04
1317
steps:
14-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
19+
- name: Install setuptools dependency
20+
run: |
21+
python -m pip install --upgrade pip
22+
python -m pip install setuptools==81.0.0
1523
- name: not-grep
16-
uses: mattsb42-meta/not-grep@1.0.0
24+
uses: mattsb42-meta/not-grep@1.0.1

.github/workflows/ci_test_go.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545

4646
- name: Setup Docker
4747
if: matrix.os == 'macos-15-intel' && matrix.library == 'TestVectors'
48-
uses: douglascamata/setup-docker-macos-action@v1.0.2
48+
uses: douglascamata/setup-docker-macos-action@v1.1.0
4949

5050
- name: Setup DynamoDB Local
5151
if: matrix.library == 'TestVectors'
@@ -58,7 +58,7 @@ jobs:
5858
run: |
5959
git config --global core.longpaths true
6060
61-
- uses: actions/checkout@v5
61+
- uses: actions/checkout@v6
6262
with:
6363
submodules: recursive
6464

@@ -95,7 +95,7 @@ jobs:
9595
with:
9696
go-version: ${{ matrix.go-version }}
9797

98-
- uses: actions/checkout@v5
98+
- uses: actions/checkout@v6
9999
- name: Init Submodules
100100
shell: bash
101101
run: |

.github/workflows/ci_test_java.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
role-to-assume: arn:aws:iam::370957321024:role/GitHub-CI-DDBEC-Dafny-Role-us-west-2
4444
role-session-name: DDBEC-Dafny-Java-Tests
4545

46-
- uses: actions/checkout@v5
46+
- uses: actions/checkout@v6
4747
with:
4848
submodules: recursive
4949

.github/workflows/ci_test_net.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Support longpaths on Git checkout
3838
run: |
3939
git config --global core.longpaths true
40-
- uses: actions/checkout@v5
40+
- uses: actions/checkout@v6
4141
with:
4242
submodules: recursive
4343

0 commit comments

Comments
 (0)