File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -132,6 +132,9 @@ jobs:
132132 TEST_PYPI_TOKEN,${{ secrets.PYPI_TEST_TOKEN_SECRET_ARN }}
133133 parse-json-secrets : true
134134
135+ - name : Set up Docker Buildx
136+ uses : docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # 3.11.1
137+
135138 - name : Configure AWS credentials for private ECR
136139 uses : aws-actions/configure-aws-credentials@a03048d87541d1d9fcf2ecf528a4a65ba9bd7838 # v5.0.0
137140 with :
@@ -157,7 +160,7 @@ jobs:
157160 # The step below publishes to testpypi in order to catch any issues
158161 # with the package configuration that would cause a failure to upload to pypi.
159162 - name : Install twine
160- run : pip install twine
163+ run : pip install twine==5.1.1
161164
162165 - name : Download SDK artifact
163166 uses : actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ ARG TARGETARCH
3939RUN if [ $TARGETARCH = "amd64" ]; then rustup component add rustfmt && cargo fmt --check ; fi
4040
4141# Audit dependencies
42- RUN if [ $TARGETARCH = "amd64" ]; then cargo install cargo-audit && cargo audit ; fi
42+ RUN if [ $TARGETARCH = "amd64" ]; then cargo install cargo-audit --locked && cargo audit ; fi
4343
4444
4545# Cross-compile based on the target platform.
Original file line number Diff line number Diff line change 11[build-system ]
2- requires = [" hatchling" ]
2+ requires = [" hatchling==1.25.0 " ]
33build-backend = " hatchling.build"
44
55[project ]
You can’t perform that action at this time.
0 commit comments