File tree Expand file tree Collapse file tree 3 files changed +93
-93
lines changed
Expand file tree Collapse file tree 3 files changed +93
-93
lines changed Original file line number Diff line number Diff line change 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 }}
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 : .
Original file line number Diff line number Diff 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
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
You can’t perform that action at this time.
0 commit comments