Skip to content

Commit 67b0c98

Browse files
committed
fix(actions): update deploy and lint actions
1 parent 5c4fcfb commit 67b0c98

File tree

3 files changed

+93
-93
lines changed

3 files changed

+93
-93
lines changed

.github/workflows/build_and_push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040

4141
# Cache Docker layers to speed up builds
4242
- name: Cache Docker layers
43-
uses: actions/cache@v3 # Pin to a specific version
43+
uses: actions/cache@v3
4444
with:
4545
path: /tmp/.buildx-cache
4646
key: ${{ runner.os }}-docker-${{ github.ref }}
@@ -49,7 +49,7 @@ jobs:
4949
5050
# Build and push Docker image
5151
- name: Build and push Docker image
52-
uses: docker/build-push-action@v6 # Pin to a specific version
52+
uses: docker/build-push-action@v6
5353
id: push
5454
with:
5555
context: .

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ jobs:
1111
runs-on: "ubuntu-latest"
1212
steps:
1313
- name: Checkout repository
14-
uses: actions/checkout@v4 # Pin to specific version
14+
uses: actions/checkout@v4
1515

1616
# Set up Python environment
1717
- name: Set up uv
18-
uses: astral-sh/setup-uv@v5 # Pin to specific version
18+
uses: astral-sh/setup-uv@v5
1919
with:
2020
version: "0.5.24"
2121

@@ -30,7 +30,7 @@ jobs:
3030
# Lint code with ruff
3131
- name: Lint with ruff
3232
run: uv run ruff check --diff
33-
continue-on-error: false # Fail if issues are found
33+
continue-on-error: false
3434

3535
# Type check with pyright
3636
- name: Type check with pyright

0 commit comments

Comments
 (0)