Skip to content

Commit

Permalink
Pin setuptools version in focal because newer version is broken again…
Browse files Browse the repository at this point in the history
…st 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 <[email protected]>
  • Loading branch information
emersonknapp authored Aug 22, 2024
1 parent 17bc2f1 commit 4397556
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/automerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,14 @@ jobs:
auto-merge-dependabot:
runs-on: ubuntu-latest
steps:
- uses: pascalgn/automerge-action@v0.12.0
- uses: pascalgn/automerge-action@v0.16.3
if: github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]'
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
MERGE_LABELS: "dependencies"
MERGE_METHOD: "squash" # Sqush and merge
MERGE_METHOD: "squash" # Squash and merge
MERGE_COMMIT_MESSAGE: "pull-request-title-and-description"
MERGE_RETRY_SLEEP: "1200000" # Retry after 20m, enough time for check suites to run
UPDATE_RETRIES: "6"
UPDATE_METHOD: "rebase" # Rebase PR on base branch
UPDATE_RETRY_SLEEP: "300000"

2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ LABEL org.label-schema.vendor="ROS Tooling Working Group"

COPY setup-ros.sh /tmp/setup-ros.sh
RUN /tmp/setup-ros.sh "${ROS_DISTRO}" && rm -f /tmp/setup-ros.sh
ENV LANG en_US.UTF-8
ENV LANG=en_US.UTF-8
RUN for i in $(echo ${EXTRA_APT_PACKAGES} | tr ',' ' '); do \
apt-get install --yes --no-install-recommends "$i"; \
done
Expand Down
2 changes: 1 addition & 1 deletion setup-ros.sh
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ case ${UBUNTU_VERSION} in
pytest-repeat \
pytest-rerunfailures \
pytest-runner \
setuptools \
setuptools==58.2.0 \
pyparsing \
wheel
;;
Expand Down

0 comments on commit 4397556

Please sign in to comment.