Skip to content

Commit 358ca2d

Browse files
chore(actions): update github-actions
1 parent 41a62ee commit 358ca2d

3 files changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/build.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
steps:
2727
- name: Checkout repository
28-
uses: actions/checkout@v6
28+
uses: actions/checkout@v7
2929

3030
- name: Setup go
3131
uses: actions/setup-go@v6
@@ -60,10 +60,10 @@ jobs:
6060

6161
steps:
6262
- name: Checkout repository
63-
uses: actions/checkout@v6
63+
uses: actions/checkout@v7
6464

6565
- name: Setup Docker Buildx
66-
uses: docker/setup-buildx-action@v3
66+
uses: docker/setup-buildx-action@v4
6767

6868
- name: Prepare repository name
6969
id: prepare-repository-name
@@ -73,12 +73,12 @@ jobs:
7373
7474
- name: Extract metadata (tags, labels) for Docker
7575
id: extract-metadata
76-
uses: docker/metadata-action@v5
76+
uses: docker/metadata-action@v6
7777
with:
7878
images: ${{ steps.prepare-repository-name.outputs.repository }}
7979

8080
- name: Build Docker image
81-
uses: docker/build-push-action@v6
81+
uses: docker/build-push-action@v7
8282
with:
8383
platforms: linux/amd64,linux/arm64
8484
context: .
@@ -96,7 +96,7 @@ jobs:
9696
labels: ${{ steps.extract-metadata.outputs.labels }}
9797

9898
- name: Upload Docker image archive
99-
uses: actions/upload-artifact@v6
99+
uses: actions/upload-artifact@v7
100100
with:
101101
name: image.tar
102102
path: ${{ runner.temp }}/image.tar

.github/workflows/publish.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ jobs:
4141

4242
steps:
4343
- name: Checkout repository
44-
uses: actions/checkout@v6
44+
uses: actions/checkout@v7
4545

4646
- name: Setup Docker Buildx
47-
uses: docker/setup-buildx-action@v3
47+
uses: docker/setup-buildx-action@v4
4848

4949
- name: Log in to the Container registry
50-
uses: docker/login-action@v3
50+
uses: docker/login-action@v4
5151
with:
5252
registry: ${{ env.REGISTRY }}
5353
username: ${{ github.actor }}
@@ -61,12 +61,12 @@ jobs:
6161
6262
- name: Extract metadata (tags, labels) for Docker
6363
id: extract-metadata
64-
uses: docker/metadata-action@v5
64+
uses: docker/metadata-action@v6
6565
with:
6666
images: ${{ steps.prepare-repository-name.outputs.repository }}
6767

6868
- name: Build and push Docker image
69-
uses: docker/build-push-action@v6
69+
uses: docker/build-push-action@v7
7070
with:
7171
platforms: linux/amd64,linux/arm64
7272
context: .
@@ -105,10 +105,10 @@ jobs:
105105
echo "chart_directory=$chart_directory" >> $GITHUB_OUTPUT
106106
107107
- name: Checkout repository
108-
uses: actions/checkout@v6
108+
uses: actions/checkout@v7
109109

110110
- name: Checkout chart repository
111-
uses: actions/checkout@v6
111+
uses: actions/checkout@v7
112112
with:
113113
repository: ${{ steps.prepare.outputs.chart_repository }}
114114
path: chart-repository

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
fi
5050
5151
- name: Checkout repository
52-
uses: actions/checkout@v6
52+
uses: actions/checkout@v7
5353
with:
5454
token: ${{ secrets.WORKFLOW_USER_GH_TOKEN }}
5555
fetch-depth: 0

0 commit comments

Comments
 (0)