Skip to content

Commit 69660e9

Browse files
committed
Fix matrix
1 parent 0c5038c commit 69660e9

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/codeql-analysis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ name: "CodeQL"
33
on:
44
push:
55
branches:
6-
- v2
6+
- main
77
- master
88
pull_request:
99
# The branches below must be a subset of the branches above
10-
branches: [v2]
10+
branches: [main]
1111
schedule:
1212
- cron: "27 9 * * 1"
1313

@@ -29,7 +29,7 @@ jobs:
2929

3030
steps:
3131
- name: Checkout repository
32-
uses: actions/checkout@v2
32+
uses: actions/checkout@main
3333

3434
# Initializes the CodeQL tools for scanning.
3535
- name: Initialize CodeQL

.github/workflows/run-tests.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ on:
44
push:
55
branches:
66
- v1
7-
- v2
7+
- main
88
pull_request:
99
branches:
1010
- v1
11-
- v2
11+
- main
1212
schedule:
1313
- cron: "0 9 1 * *"
1414

@@ -37,7 +37,7 @@ jobs:
3737
options: --ulimit nofile=262144:262144
3838

3939
steps:
40-
- uses: actions/checkout@v2
40+
- uses: actions/checkout@main
4141

4242
- name: Install Go ${{ matrix.go }}
4343
uses: actions/setup-go@v2.1.5

0 commit comments

Comments
 (0)