Skip to content

Commit 2614083

Browse files
committed
ci: update GitHub Actions to latest versions
- Bump docker/login-action from v3 to v4 - Bump docker/metadata-action from v5 to v6 - Bump docker/build-push-action from v6 to v7 - Bump codecov/codecov-action from v5 to v6
1 parent 0840b2f commit 2614083

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/docker.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ jobs:
3333
uses: docker/setup-buildx-action@v4
3434

3535
- name: Login to GitHub Container Registry
36-
uses: docker/login-action@v3
36+
uses: docker/login-action@v4
3737
with:
3838
registry: ghcr.io
3939
username: ${{ github.repository_owner }}
4040
password: ${{ secrets.GITHUB_TOKEN }}
4141

4242
- name: Docker meta
4343
id: docker-meta
44-
uses: docker/metadata-action@v5
44+
uses: docker/metadata-action@v6
4545
with:
4646
images: |
4747
ghcr.io/${{ github.repository }}
@@ -56,7 +56,7 @@ jobs:
5656
echo "REPO=${GITHUB_REPOSITORY,,}" >> ${GITHUB_ENV}
5757
5858
- name: Build Docker image for scanning
59-
uses: docker/build-push-action@v6
59+
uses: docker/build-push-action@v7
6060
with:
6161
context: .
6262
platforms: linux/amd64
@@ -82,7 +82,7 @@ jobs:
8282
sarif_file: "trivy-docker-results.sarif"
8383

8484
- name: Build and push
85-
uses: docker/build-push-action@v6
85+
uses: docker/build-push-action@v7
8686
with:
8787
context: .
8888
platforms: linux/amd64,linux/arm64

.github/workflows/testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
make test
7575
7676
- name: Upload coverage to Codecov
77-
uses: codecov/codecov-action@v5
77+
uses: codecov/codecov-action@v6
7878
with:
7979
flags: ${{ matrix.os }},go-${{ matrix.go }}
8080
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)