Skip to content

Commit a18e24d

Browse files
pionbotSean-Der
authored andcommittedMar 27, 2024·
Update CI configs to v0.11.4
Update lint scripts and CI configs.
1 parent 39052f8 commit a18e24d

File tree

4 files changed

+25
-5
lines changed

4 files changed

+25
-5
lines changed
 

Diff for: ‎.github/workflows/api.yaml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#
2+
# DO NOT EDIT THIS FILE
3+
#
4+
# It is automatically copied from https://github.com/pion/.goassets repository.
5+
# If this repository should have package specific CI config,
6+
# remove the repository name from .goassets/.github/workflows/assets-sync.yml.
7+
#
8+
# If you want to update the shared CI config, send a PR to
9+
# https://github.com/pion/.goassets instead of this repository.
10+
#
11+
# SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
12+
# SPDX-License-Identifier: MIT
13+
14+
name: API
15+
on:
16+
pull_request:
17+
18+
jobs:
19+
check:
20+
uses: pion/.goassets/.github/workflows/api.reusable.yml@master

Diff for: ‎.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ jobs:
2121
release:
2222
uses: pion/.goassets/.github/workflows/release.reusable.yml@master
2323
with:
24-
go-version: '1.20' # auto-update/latest-go-version
24+
go-version: "1.22" # auto-update/latest-go-version

Diff for: ‎.github/workflows/test.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
uses: pion/.goassets/.github/workflows/test.reusable.yml@master
2424
strategy:
2525
matrix:
26-
go: ['1.21', '1.20'] # auto-update/supported-go-version-list
26+
go: ["1.22", "1.21"] # auto-update/supported-go-version-list
2727
fail-fast: false
2828
with:
2929
go-version: ${{ matrix.go }}
@@ -32,12 +32,12 @@ jobs:
3232
uses: pion/.goassets/.github/workflows/test-i386.reusable.yml@master
3333
strategy:
3434
matrix:
35-
go: ['1.21', '1.20'] # auto-update/supported-go-version-list
35+
go: ["1.22", "1.21"] # auto-update/supported-go-version-list
3636
fail-fast: false
3737
with:
3838
go-version: ${{ matrix.go }}
3939

4040
test-wasm:
4141
uses: pion/.goassets/.github/workflows/test-wasm.reusable.yml@master
4242
with:
43-
go-version: '1.20' # auto-update/latest-go-version
43+
go-version: "1.22" # auto-update/latest-go-version

Diff for: ‎.github/workflows/tidy-check.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ jobs:
2222
tidy:
2323
uses: pion/.goassets/.github/workflows/tidy-check.reusable.yml@master
2424
with:
25-
go-version: '1.21' # auto-update/latest-go-version
25+
go-version: "1.22" # auto-update/latest-go-version

0 commit comments

Comments
 (0)
Please sign in to comment.