Skip to content

Commit

Permalink
Merge pull request #171 from beeware/dependabot/github_actions/docker…
Browse files Browse the repository at this point in the history
…/setup-buildx-action-3.7.1

Bump docker/setup-buildx-action from 3.6.1 to 3.7.1
  • Loading branch information
freakboy3742 authored Oct 7, 2024
2 parents 8d1288f + 7d12b73 commit ed66d4d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/app-build-verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ jobs:
startsWith(inputs.runner-os, 'ubuntu')
&& contains(fromJSON('["", "Linux"]'), inputs.target-platform)
&& contains(fromJSON('["", "system", "appimage"]'), inputs.target-format)
uses: docker/setup-buildx-action@v3.6.1
uses: docker/setup-buildx-action@v3.7.1

- name: Docker Caching Configuration
id: docker
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -237,18 +237,22 @@ jobs:
run: |
if ! python -m pip list | grep tox; then
echo '::error::Failed to install tox'
python -m pip list
exit 1
fi
if ! python -m pip list | grep pre-commit; then
if ! python -m pip list | grep pre_commit; then
echo '::error::Failed to install pre-commit'
python -m pip list
exit 1
fi
if ! python -m pip list | grep coverage; then
echo '::error::Failed to install coverage'
python -m pip list
exit 1
fi
if ! python -m pip list | grep cookiecutter; then
echo '::error::Failed to install cookiecutter'
python -m pip list
exit 1
fi
Expand Down

0 comments on commit ed66d4d

Please sign in to comment.