Skip to content

Commit ba3b7a0

Browse files
authored
Merge branch 'main' into dependabot/github_actions/golangci/golangci-lint-action-7
2 parents 5c1e278 + 5f1070e commit ba3b7a0

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.github/workflows/codeql-analysis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ on:
2323
jobs:
2424
analyze:
2525
name: Analyze
26-
runs-on: ubuntu-20.04
26+
runs-on: ubuntu-latest
2727

2828
strategy:
2929
fail-fast: false

.github/workflows/dependency-review.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
# Source repository: https://github.com/actions/dependency-review-action
66
# Public documentation: https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review#dependency-review-enforcement
77
name: 'Dependency Review'
8-
on: [pull_request]
8+
on:
9+
pull_request:
910

1011
permissions:
1112
contents: read

.github/workflows/lint.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ jobs:
1919
strategy:
2020
max-parallel: 6
2121
matrix:
22-
go: [1.22, 1.23]
23-
os: [ubuntu-latest, macos-latest, windows-latest]
22+
go: [ 1.23, 1.24]
23+
os: [ ubuntu-latest, macos-latest, windows-latest ]
2424
runs-on: ${{ matrix.os }}
2525
steps:
2626
- name: Setup Go

.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
strategy:
1414
max-parallel: 6
1515
matrix:
16-
go-version: [1.22, 1.23]
17-
platform: [ubuntu-latest, macos-latest, windows-latest]
16+
go-version: [ 1.23, 1.24 ]
17+
platform: [ ubuntu-latest, macos-latest, windows-latest ]
1818

1919
runs-on: ${{ matrix.platform }}
2020

0 commit comments

Comments
 (0)