Skip to content

Commit 2c3ef6c

Browse files
authored
refactor(submodules): update mpl to point to new repo (#180)
1 parent 1acc137 commit 2c3ef6c

File tree

6 files changed

+22
-22
lines changed

6 files changed

+22
-22
lines changed

.github/workflows/ci_examples_java.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
macos-latest
3838
]
3939
runs-on: ${{ matrix.os }}
40-
environment: "ESDK CI"
40+
environment: "MPL CI"
4141
permissions:
4242
id-token: write
4343
contents: read
@@ -54,11 +54,11 @@ jobs:
5454
- name: Init Submodules
5555
env:
5656
# This secret is in the configured environment
57-
# Token created on # 11/28/2022
58-
# expires in ~30 days 12/28/2022
59-
PRIVATE_ESDK_PAT: ${{ secrets.PRIVATE_ESDK_PAT }}
57+
# Token created on # 05/12/2023
58+
# expires in ~30 days 05/22/2023
59+
MPL_PAT: ${{ secrets.MPL_PAT }}
6060
run: |
61-
AUTH="$(echo -n "pat:${PRIVATE_ESDK_PAT}" | base64 | tr -d '\n')"
61+
AUTH="$(echo -n "pat:${MPL_PAT}" | base64 | tr -d '\n')"
6262
git config --global http.https://github.com/.extraheader "AUTHORIZATION: basic $AUTH"
6363
git config --global --add url.https://github.com/.insteadOf [email protected]:
6464
git submodule update --init --recursive submodules/MaterialProviders

.github/workflows/ci_test_java.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
macos-latest
4141
]
4242
runs-on: ${{ matrix.os }}
43-
environment: "ESDK CI"
43+
environment: "MPL CI"
4444
permissions:
4545
id-token: write
4646
contents: read
@@ -57,11 +57,11 @@ jobs:
5757
- name: Init Submodules
5858
env:
5959
# This secret is in the configured environment
60-
# Token created on # 11/28/2022
61-
# expires in ~30 days 12/28/2022
62-
PRIVATE_ESDK_PAT: ${{ secrets.PRIVATE_ESDK_PAT }}
60+
# Token created on # 05/12/2023
61+
# expires in ~30 days 05/22/2023
62+
MPL_PAT: ${{ secrets.MPL_PAT }}
6363
run: |
64-
AUTH="$(echo -n "pat:${PRIVATE_ESDK_PAT}" | base64 | tr -d '\n')"
64+
AUTH="$(echo -n "pat:${MPL_PAT}" | base64 | tr -d '\n')"
6565
git config --global http.https://github.com/.extraheader "AUTHORIZATION: basic $AUTH"
6666
git config --global --add url.https://github.com/.insteadOf [email protected]:
6767
git submodule update --init --recursive submodules/MaterialProviders

.github/workflows/ci_test_net.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
macos-latest,
4141
]
4242
runs-on: ${{ matrix.os }}
43-
environment: "ESDK CI"
43+
environment: "MPL CI"
4444
permissions:
4545
id-token: write
4646
contents: read
@@ -53,11 +53,11 @@ jobs:
5353
- name: Init Submodules
5454
env:
5555
# This secret is in the configured environment
56-
# Token created on # 11/28/2022
57-
# expires in ~30 days 12/28/2022
58-
PRIVATE_ESDK_PAT: ${{ secrets.PRIVATE_ESDK_PAT }}
56+
# Token created on # 05/12/2023
57+
# expires in ~30 days 05/22/2023
58+
MPL_PAT: ${{ secrets.MPL_PAT }}
5959
run: |
60-
AUTH="$(echo -n "pat:${PRIVATE_ESDK_PAT}" | base64 | tr -d '\n')"
60+
AUTH="$(echo -n "pat:${MPL_PAT}" | base64 | tr -d '\n')"
6161
git config --global http.https://github.com/.extraheader "AUTHORIZATION: basic $AUTH"
6262
git config --global --add url.https://github.com/.insteadOf [email protected]:
6363
git submodule update --init --recursive submodules/MaterialProviders

.github/workflows/ci_verification.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,18 +41,18 @@ jobs:
4141
macos-latest,
4242
]
4343
runs-on: ${{ matrix.os }}
44-
environment: "ESDK CI"
44+
environment: "MPL CI"
4545
steps:
4646
- uses: actions/checkout@v3
4747

4848
- name: Init Submodules
4949
env:
5050
# This secret is in the configured environment
51-
# Token created on # 11/28/2022
52-
# expires in ~30 days 12/28/2022
53-
PRIVATE_ESDK_PAT: ${{ secrets.PRIVATE_ESDK_PAT }}
51+
# Token created on # 05/12/2023
52+
# expires in ~30 days 05/22/2023
53+
MPL_PAT: ${{ secrets.MPL_PAT }}
5454
run: |
55-
AUTH="$(echo -n "pat:${PRIVATE_ESDK_PAT}" | base64 | tr -d '\n')"
55+
AUTH="$(echo -n "pat:${MPL_PAT}" | base64 | tr -d '\n')"
5656
git config --global http.https://github.com/.extraheader "AUTHORIZATION: basic $AUTH"
5757
git config --global --add url.https://github.com/.insteadOf [email protected]:
5858
git submodule update --init --recursive submodules/MaterialProviders

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[submodule "submodules/MaterialProviders"]
22
path = submodules/MaterialProviders
3-
url = git@github.com:aws/private-aws-encryption-sdk-dafny-staging.git
3+
url = https://github.com/aws/aws-cryptographic-material-providers-library-dafny.git
44
[submodule "submodules/smithy-dafny"]
55
path = submodules/smithy-dafny
66
url = [email protected]:awslabs/smithy-dafny.git

0 commit comments

Comments
 (0)