Skip to content

Commit fd29d28

Browse files
committed
fix
1 parent 752ae2d commit fd29d28

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/appcd-iac-pr-diff.yml

-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ jobs:
5252
APPCD_TOKEN: ${{ secrets.APPCD_TOKEN }}
5353
APPCD_URL: ${{ secrets.APPCD_URL }}
5454
run: |
55-
docker pull ghcr.io/appcd-dev/appcd-dist/appcd-cli:v0.9.0
5655
mkdir -p artifact/${{ steps.extract_branch.outputs.branch }}/
5756
docker run --rm \
5857
--workdir=/code \

.github/workflows/docker-publish.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ jobs:
2424
runs-on: ubuntu-latest
2525

2626
steps:
27-
- uses: actions/checkout@v2
27+
- uses: actions/checkout@v4
28+
with:
29+
fetch-depth: 1
2830

2931
- name: Run tests
3032
run: |
@@ -50,6 +52,8 @@ jobs:
5052

5153
steps:
5254
- uses: actions/checkout@v4
55+
with:
56+
fetch-depth: 1
5357

5458
- name: Build image
5559
run: docker build . --file Dockerfile --tag $IMAGE_NAME

0 commit comments

Comments
 (0)