Skip to content

Commit c956905

Browse files
authored
Merge branch 'main' into main
2 parents df33c8d + bc2d933 commit c956905

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/release-build.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff 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

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ ARG TARGETARCH
3939
RUN 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.

aws-opentelemetry-distro/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["hatchling"]
2+
requires = ["hatchling==1.25.0"]
33
build-backend = "hatchling.build"
44

55
[project]

0 commit comments

Comments
 (0)