-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrade enclave dependency versions #115
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
4fd61d8
[chore] Tweak enclave build
jplock 36e09e2
missed one
jplock cf1cf78
remove shared libs
jplock e2d06d8
Upgrade aws-lc from v1.12.0 to v1.41.1
jplock fe95d6f
WIP
jplock b898c6a
Upgrade powertools from 3.3.0 to 3.4.0
jplock 181f9c0
WIP
jplock d1ca496
try caching
jplock 3b5d29e
change name
jplock 87ebb44
WIP
jplock File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: docker bake | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref_name }} | ||
cancel-in-progress: true | ||
|
||
env: | ||
RUST_BACKTRACE: 1 | ||
CARGO_TERM_COLOR: never | ||
|
||
jobs: | ||
docker: | ||
if: github.repository_owner == 'aws-samples' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | ||
- name: Set up Docker buildx | ||
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3.8.0 | ||
- name: Build | ||
uses: docker/bake-action@3fc70e1131fee40a422dd8dd0ff22014ae20a1f3 # v5.11.0 | ||
env: | ||
SOURCE_DATE_EPOCH: 0 | ||
with: | ||
push: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
black==24.10.0 | ||
aws-lambda-powertools[all,aws-sdk]==3.3.0 | ||
boto3-stubs[dynamodb,kms]==1.35.81 | ||
aws-lambda-powertools[all,aws-sdk]==3.4.0 | ||
boto3-stubs[dynamodb,kms] | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
aws-lambda-powertools==3.3.0 | ||
aws-lambda-powertools==3.4.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
black==24.10.0 | ||
aws-lambda-powertools[all,aws-sdk]==3.3.0 | ||
boto3-stubs[dynamodb,kms]==1.35.81 | ||
aws-lambda-powertools[all,aws-sdk]==3.4.0 | ||
boto3-stubs[dynamodb,kms] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this gets updated too frequently and is only a dev dependency |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
group "default" { | ||
targets = ["parent", "enclave"] | ||
} | ||
|
||
target "parent" { | ||
context = "./parent" | ||
dockerfile = "Dockerfile" | ||
args = { | ||
TARGETPLATFORM = "x86_64-unknown-linux-gnu" | ||
} | ||
tags = ["parent-vault:latest"] | ||
cache-to = ["type=gha,ignore-error=true,mode=max,scope=parent"] | ||
cache-from = ["type=gha,scope=parent"] | ||
} | ||
|
||
target "enclave" { | ||
context = "./enclave" | ||
dockerfile = "Dockerfile" | ||
args = { | ||
TARGETPLATFORM = "x86_64-unknown-linux-musl" | ||
} | ||
tags = ["enclave-vault:latest"] | ||
cache-to = ["type=gha,ignore-error=true,mode=max,scope=enclave"] | ||
cache-from = ["type=gha,scope=enclave"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this gets updated too frequently and is only a dev dependency