Skip to content

Commit 4397556

Browse files
authored
Pin setuptools version in focal because newer version is broken against our other pins (#76)
* Pin setuptools version in focal because newer version is broken against our other pins * Update automerge action to work, fix Dockerfile deprecation warning Signed-off-by: Emerson Knapp <emerson.b.knapp@gmail.com>
1 parent 17bc2f1 commit 4397556

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/automerge.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,14 @@ jobs:
1616
auto-merge-dependabot:
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: pascalgn/automerge-action@v0.12.0
19+
- uses: pascalgn/automerge-action@v0.16.3
2020
if: github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]'
2121
env:
2222
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
2323
MERGE_LABELS: "dependencies"
24-
MERGE_METHOD: "squash" # Sqush and merge
24+
MERGE_METHOD: "squash" # Squash and merge
2525
MERGE_COMMIT_MESSAGE: "pull-request-title-and-description"
2626
MERGE_RETRY_SLEEP: "1200000" # Retry after 20m, enough time for check suites to run
2727
UPDATE_RETRIES: "6"
2828
UPDATE_METHOD: "rebase" # Rebase PR on base branch
2929
UPDATE_RETRY_SLEEP: "300000"
30-

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ LABEL org.label-schema.vendor="ROS Tooling Working Group"
4040

4141
COPY setup-ros.sh /tmp/setup-ros.sh
4242
RUN /tmp/setup-ros.sh "${ROS_DISTRO}" && rm -f /tmp/setup-ros.sh
43-
ENV LANG en_US.UTF-8
43+
ENV LANG=en_US.UTF-8
4444
RUN for i in $(echo ${EXTRA_APT_PACKAGES} | tr ',' ' '); do \
4545
apt-get install --yes --no-install-recommends "$i"; \
4646
done

setup-ros.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ case ${UBUNTU_VERSION} in
161161
pytest-repeat \
162162
pytest-rerunfailures \
163163
pytest-runner \
164-
setuptools \
164+
setuptools==58.2.0 \
165165
pyparsing \
166166
wheel
167167
;;

0 commit comments

Comments
 (0)