Skip to content

Commit c06f5f1

Browse files
authored
release action was broken (#35)
1 parent 8452da6 commit c06f5f1

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

.github/workflows/release.yaml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,25 @@ jobs:
99
build:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313

1414
- name: Install libsystemd headers
1515
run: sudo apt-get update && sudo apt-get install libsystemd-dev
1616

17+
- name: Set up Go 1.22
18+
uses: actions/setup-go@v5
19+
with:
20+
go-version: "1.22"
21+
cache: false
22+
id: go
23+
1724
- name: Lint
18-
uses: golangci/golangci-lint-action@v3
25+
uses: golangci/golangci-lint-action@v4
1926
with:
20-
args: -p bugs -p unused --timeout=3m
27+
args: -p bugs -p unused -D protogetter --timeout=3m
2128

2229
- name: Docker Login
23-
uses: docker/login-action@v2
30+
uses: docker/login-action@v3
2431
with:
2532
registry: ${{ secrets.DOCKER_REGISTRY }}
2633
username: ${{ secrets.DOCKER_REGISTRY_USER }}

0 commit comments

Comments
 (0)