Skip to content

Commit 624d62d

Browse files
committed
update gh actions
1 parent e913903 commit 624d62d

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/ghcr.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,17 @@ jobs:
2929
password: ${{ secrets.GITHUB_TOKEN }}
3030

3131
- name: Checkout
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@v5
3333

3434
- name: Set up Go
3535
uses: actions/setup-go@v5
3636
with:
3737
go-version-file: 'go.mod'
3838

3939
- name: Lint
40-
uses: golangci/golangci-lint-action@v6
40+
uses: golangci/golangci-lint-action@v8
4141
with:
42-
args: -p bugs -p unused --timeout=3m
42+
args: --timeout=3m
4343

4444
- name: Make tag
4545
run: |

.github/workflows/latest.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v5
1414

1515
- name: Docker Login
1616
uses: docker/login-action@v3
@@ -24,9 +24,9 @@ jobs:
2424
go-version-file: 'go.mod'
2525

2626
- name: Lint
27-
uses: golangci/golangci-lint-action@v6
27+
uses: golangci/golangci-lint-action@v8
2828
with:
29-
args: --timeout=3m -p bugs -p unused
29+
args: --timeout=3m
3030

3131
- name: Build the Docker images
3232
run: |

.github/workflows/pull_request.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v5
1414

1515
- name: Figure out if running fork PR
1616
id: fork
@@ -29,9 +29,9 @@ jobs:
2929
go-version-file: 'go.mod'
3030

3131
- name: Lint
32-
uses: golangci/golangci-lint-action@v6
32+
uses: golangci/golangci-lint-action@v8
3333
with:
34-
args: --timeout=3m -p bugs -p unused
34+
args: --timeout=3m
3535

3636
- name: Build
3737
run: |

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v5
1414

1515
- name: Docker Login
1616
uses: docker/login-action@v3
@@ -24,9 +24,9 @@ jobs:
2424
go-version-file: 'go.mod'
2525

2626
- name: Lint
27-
uses: golangci/golangci-lint-action@v6
27+
uses: golangci/golangci-lint-action@v8
2828
with:
29-
args: --timeout=3m -p bugs -p unused
29+
args: --timeout=3m
3030

3131
- name: Build the Docker images
3232
run: |

0 commit comments

Comments
 (0)