chore(deps): update dependency boto3 to v1.35.63 #1131
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: graphviz | |
on: | |
pull_request: | |
jobs: | |
setup-graphviz: | |
runs-on: ubuntu-latest | |
steps: | |
- name: install graphviz | |
uses: ts-graphviz/setup-graphviz@v2 | |
with: | |
ubuntu-skip-apt-update: 'false' # default false | |
- name: check version | |
run: dot -V | |
install: | |
runs-on: ubuntu-latest | |
steps: | |
- name: install graphviz | |
run: | | |
curl -o graphviz.deb https://gitlab.com/api/v4/projects/4207231/packages/generic/graphviz-releases/9.0.0/ubuntu_20.04_graphviz-9.0.0-cmake.deb | |
sudo dpkg -i graphviz.deb | |
sudo apt-get install -f | |
- name: check version | |
run: dot -V |