Skip to content

Commit f9e15ac

Browse files
committed
ci: Adapt CI to proton branch
1 parent a4bf29b commit f9e15ac

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

.github/workflows/android.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches: [ main ]
66
pull_request:
7-
branches: [ main, v3 ]
7+
branches: [ main, Proton ]
88

99
jobs:
1010
build:
@@ -18,9 +18,9 @@ jobs:
1818
java-version: 1.8
1919

2020
- name: Set up Go 1.x
21-
uses: actions/setup-go@v2
21+
uses: actions/setup-go@v5
2222
with:
23-
go-version: ^1.16
23+
go-version: '^1.16'
2424
id: go
2525

2626
- name: Install NDK

.github/workflows/ios.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches: [ main ]
66
pull_request:
7-
branches: [ main, v3 ]
7+
branches: [ main, Proton ]
88

99
jobs:
1010
build:
@@ -18,10 +18,10 @@ jobs:
1818
xcode-version: 15.3.0
1919
id: xcode
2020

21-
- name: Set up Go 1.x
22-
uses: actions/setup-go@v2
21+
- name: Set up Go 1.22
22+
uses: actions/setup-go@v5
2323
with:
24-
go-version: ^1.16
24+
go-version: '1.22'
2525
id: go
2626

2727
- name: Checkout

.github/workflows/sop-test-suite.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: SOP interoperability test suite
22

33
on:
44
pull_request:
5-
branches: [ main, v3 ]
5+
branches: [ main, Proton ]
66

77
jobs:
88

.golangci.yml

+2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ issues:
2020
- ST1003 # CamelCase variables; see constants/cipher.go
2121
- missing output for example, go test can't validate it
2222
- variable 'hasExpiredEntity' is only used in the if-statement
23+
- SA1019
24+
- commentFormatting
2325
exclude-rules:
2426
- path: crypto/key_clear.go
2527
text: "SA1019"

0 commit comments

Comments
 (0)