Skip to content

Commit 167f0c0

Browse files
Upgrade CI workflow to new actions versions
1 parent d1728a5 commit 167f0c0

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/ci.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: event_name
2727
run: echo ${{ github.event_name }}
2828
- name: checkout
29-
uses: actions/checkout@v3
29+
uses: actions/checkout@v4
3030
with:
3131
fetch-depth: ${{ github.event_name == 'pull_request' && 2 || 0 }}
3232
- id: fileschanged
@@ -56,12 +56,12 @@ jobs:
5656
if: needs.report.outputs.non_docs_changed == 'true'
5757
steps:
5858
- name: checkout
59-
uses: actions/checkout@v3
60-
- uses: actions/setup-go@v3
59+
uses: actions/checkout@v4
60+
- uses: actions/setup-go@v5
6161
with:
6262
go-version: '1.21'
6363
- name: golangci-lint
64-
uses: golangci/golangci-lint-action@v3
64+
uses: golangci/golangci-lint-action@v6
6565
with:
6666
version: latest
6767
- name: Build
@@ -73,12 +73,12 @@ jobs:
7373
- name: Integration Test
7474
run: make integration_test
7575
- name: Set up QEMU
76-
uses: docker/setup-qemu-action@v2
76+
uses: docker/setup-qemu-action@v3
7777
- name: Set up Docker Buildx
78-
uses: docker/setup-buildx-action@v1
78+
uses: docker/setup-buildx-action@v3
7979
- name: Build and push
8080
id: docker_build
81-
uses: docker/build-push-action@v2
81+
uses: docker/build-push-action@v6
8282
with:
8383
push: false
8484
platforms: linux/amd64,linux/arm64

0 commit comments

Comments
 (0)