Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ jobs:
container:
image: docker:latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v5
- run: docker pull $IMAGE_NAME:latest || true
- run: docker build --cache-from $IMAGE_NAME:latest .
4 changes: 2 additions & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
container:
image: docker:latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v5
- run: docker pull $IMAGE_NAME:latest || true
- run: docker build --cache-from $IMAGE_NAME:latest .

Expand All @@ -30,7 +30,7 @@ jobs:
GHCR_BOT_USERNAME: ${{ secrets.GHCR_BOT_USERNAME }}
GHCR_BOT_TOKEN: ${{ secrets.GHCR_BOT_TOKEN }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v5
- run: echo "${GHCR_BOT_TOKEN}" | docker login ghcr.io -u ${GHCR_BOT_USERNAME} --password-stdin
- run: docker pull $IMAGE_NAME:latest || true
- run: docker build --cache-from ${IMAGE_NAME}:latest --tag ${IMAGE_NAME}:${{ github.sha }} --tag ${IMAGE_NAME}:latest .
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
container:
image: docker:latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v5
- run: docker pull $IMAGE_NAME:latest || true
- run: docker build --cache-from $IMAGE_NAME:latest .

Expand All @@ -30,7 +30,7 @@ jobs:
container:
image: docker:latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v5
- run: echo "${GHCR_BOT_TOKEN}" | docker login ghcr.io -u ${GHCR_BOT_USERNAME} --password-stdin
- run: docker pull $IMAGE_NAME:latest || true
- run: docker build --cache-from ${IMAGE_NAME}:latest --tag ${IMAGE_NAME}:${COMMIT_TAG} .
Expand Down
Loading