Skip to content

Commit 1777b8c

Browse files
authored
Merge pull request #1 from amscotti/workflow
Update version in workflows
2 parents 866e5f1 + c456990 commit 1777b8c

File tree

3 files changed

+14
-8
lines changed

3 files changed

+14
-8
lines changed

.github/workflows/docker-publish.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ jobs:
2323

2424
steps:
2525
- name: Checkout repository
26-
uses: actions/checkout@v2
26+
uses: actions/checkout@v4
2727

2828
- name: Set up QEMU
29-
uses: docker/setup-qemu-action@v1
29+
uses: docker/setup-qemu-action@v3
3030

3131
- name: Set up Docker Buildx
32-
uses: docker/setup-buildx-action@v1
32+
uses: docker/setup-buildx-action@v3
3333

3434
# Login against a Docker registry except on PR
3535
# https://github.com/docker/login-action
@@ -53,7 +53,7 @@ jobs:
5353
# Build and push Docker image with Buildx (don't push on PR)
5454
# https://github.com/docker/build-push-action
5555
- name: Build and push Docker image
56-
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
56+
uses: docker/build-push-action@v5
5757
with:
5858
context: .
5959
platforms: linux/amd64,linux/arm64

.github/workflows/golangci-lint.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@ jobs:
1313
name: lint
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v4
17+
- uses: actions/setup-go@v4
18+
with:
19+
go-version: '>=1.21.0'
20+
cache: false
1721
- name: golangci-lint
18-
uses: golangci/golangci-lint-action@v2
22+
uses: golangci/golangci-lint-action@v3
23+
with:
24+
version: v1.55

.github/workflows/release.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
goos: [linux, windows, darwin]
1212
goarch: [amd64, arm64]
1313
steps:
14-
- uses: actions/checkout@v2
15-
- uses: wangyoucao577/go-release-action@v1.22
14+
- uses: actions/checkout@v4
15+
- uses: wangyoucao577/go-release-action@v1.42
1616
with:
1717
github_token: ${{ secrets.GITHUB_TOKEN }}
1818
goos: ${{ matrix.goos }}

0 commit comments

Comments
 (0)