Skip to content

Commit 7f0335a

Browse files
setup uv
1 parent 3ba00a1 commit 7f0335a

1 file changed

Lines changed: 7 additions & 10 deletions

File tree

.github/workflows/docker.yaml

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,8 @@ jobs:
1818
steps:
1919
- name: Checkout code
2020
uses: actions/checkout@v3
21-
# - name: Setup Docker Buildx
22-
# run: |
23-
# docker buildx create --name mybuilder --driver remote tcp://localhost:1234 --use
24-
# docker buildx inspect --bootstrap
21+
- name: Set up Docker Buildx
22+
uses: docker/setup-buildx-action@v3
2523
- name: Build container
2624
uses: docker/build-push-action@v5
2725
with:
@@ -35,15 +33,14 @@ jobs:
3533
-e DREMIO_OAUTH_SUPPORTED=false \
3634
dremio-mcp-server:${{ github.sha }} \
3735
dremio-mcp-server tools list
38-
- name: Install uv
39-
run: |
40-
curl -LsSf https://astral.sh/uv/install.sh | sh
41-
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
42-
36+
- name: Install a specific version of uv
37+
uses: astral-sh/setup-uv@v6
38+
with:
39+
version: "0.8.12"
4340
- name: Set up Python
4441
uses: actions/setup-python@v4
4542
with:
46-
python-version: '3.13'
43+
python-version: "3.13.0"
4744

4845
- name: Start container
4946
run: |

0 commit comments

Comments
 (0)