Skip to content

Commit a660638

Browse files
authored
Merge pull request #2759 from HKUDS/dependabot/github_actions/github-actions-6534b7915f
build(deps): bump the github-actions group with 4 updates
2 parents d5dc2ed + 5e3961e commit a660638

3 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/docker-build-lite.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,26 +47,26 @@ jobs:
4747
cat lightrag/__init__.py | grep __version__
4848
4949
- name: Set up Docker Buildx
50-
uses: docker/setup-buildx-action@v3
50+
uses: docker/setup-buildx-action@v4
5151

5252
- name: Login to GitHub Container Registry
53-
uses: docker/login-action@v3
53+
uses: docker/login-action@v4
5454
with:
5555
registry: ghcr.io
5656
username: ${{ github.actor }}
5757
password: ${{ secrets.GITHUB_TOKEN }}
5858

5959
- name: Extract metadata for Docker
6060
id: meta
61-
uses: docker/metadata-action@v5
61+
uses: docker/metadata-action@v6
6262
with:
6363
images: ghcr.io/${{ github.repository }}
6464
tags: |
6565
type=raw,value=${{ steps.lite_tag.outputs.lite_tag }}
6666
type=raw,value=lite
6767
6868
- name: Build and push lite Docker image
69-
uses: docker/build-push-action@v6
69+
uses: docker/build-push-action@v7
7070
with:
7171
context: .
7272
file: ./Dockerfile.lite

.github/workflows/docker-build-manual.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,25 +43,25 @@ jobs:
4343
cat lightrag/__init__.py | grep __version__
4444
4545
- name: Set up Docker Buildx
46-
uses: docker/setup-buildx-action@v3
46+
uses: docker/setup-buildx-action@v4
4747

4848
- name: Login to GitHub Container Registry
49-
uses: docker/login-action@v3
49+
uses: docker/login-action@v4
5050
with:
5151
registry: ghcr.io
5252
username: ${{ github.actor }}
5353
password: ${{ secrets.GITHUB_TOKEN }}
5454

5555
- name: Extract metadata for Docker
5656
id: meta
57-
uses: docker/metadata-action@v5
57+
uses: docker/metadata-action@v6
5858
with:
5959
images: ghcr.io/${{ github.repository }}
6060
tags: |
6161
type=raw,value=${{ steps.get_tag.outputs.tag }}
6262
6363
- name: Build and push Docker image
64-
uses: docker/build-push-action@v6
64+
uses: docker/build-push-action@v7
6565
with:
6666
context: .
6767
file: ./Dockerfile

.github/workflows/docker-publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
fetch-depth: 0 # Fetch all history for tags
2020

2121
- name: Set up Docker Buildx
22-
uses: docker/setup-buildx-action@v3
22+
uses: docker/setup-buildx-action@v4
2323

2424
- name: Login to GitHub Container Registry
25-
uses: docker/login-action@v3
25+
uses: docker/login-action@v4
2626
with:
2727
registry: ghcr.io
2828
username: ${{ github.actor }}
@@ -55,15 +55,15 @@ jobs:
5555
5656
- name: Extract metadata for Docker
5757
id: meta
58-
uses: docker/metadata-action@v5
58+
uses: docker/metadata-action@v6
5959
with:
6060
images: ghcr.io/${{ github.repository }}
6161
tags: |
6262
type=raw,value=${{ steps.get_tag.outputs.tag }}
6363
type=raw,value=latest,enable=${{ steps.check_prerelease.outputs.is_prerelease == 'false' }}
6464
6565
- name: Build and push Docker image
66-
uses: docker/build-push-action@v6
66+
uses: docker/build-push-action@v7
6767
with:
6868
context: .
6969
file: ./Dockerfile

0 commit comments

Comments
 (0)