From ff7754f6cc37cd58f18bb8856db58159abfcf21e Mon Sep 17 00:00:00 2001 From: Pion <59523206+pionbot@users.noreply.github.com> Date: Thu, 22 Jan 2026 08:43:42 +0000 Subject: [PATCH] Update CI configs to v0.11.37 Update lint scripts and CI configs. --- .github/.gitignore | 2 +- .github/fetch-scripts.sh | 2 +- .github/install-hooks.sh | 2 +- .github/workflows/api.yaml | 2 +- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/fuzz.yaml | 2 +- .github/workflows/lint.yaml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/renovate-go-sum-fix.yaml | 2 +- .github/workflows/reuse.yml | 2 +- .github/workflows/test.yaml | 2 +- .github/workflows/tidy-check.yaml | 2 +- .gitignore | 2 +- .golangci.yml | 2 +- .goreleaser.yml | 2 +- .reuse/dep5 | 4 ++-- codecov.yml | 2 +- decoder.go | 2 +- decoder_test.go | 2 +- errors.go | 2 +- examples/decode/main.go | 2 +- examples/playback/main.go | 2 +- fuzz_test.go | 2 +- internal/bitdepth/bitdepth.go | 2 +- internal/bitdepth/bitdepth_test.go | 2 +- internal/rangecoding/decoder.go | 2 +- internal/rangecoding/decoder_test.go | 2 +- internal/rangecoding/rangecoding.go | 2 +- internal/resample/resample.go | 2 +- internal/silk/codebook.go | 2 +- internal/silk/decoder.go | 2 +- internal/silk/decoder_test.go | 2 +- internal/silk/errors.go | 2 +- internal/silk/icdf.go | 2 +- internal/silk/silk.go | 2 +- internal/silk/silk_test.go | 2 +- pkg/oggreader/oggreader.go | 2 +- pkg/oggreader/oggreader_test.go | 2 +- table_of_contents_header.go | 2 +- testdata/tiny.ogg.license | 2 +- 40 files changed, 41 insertions(+), 41 deletions(-) diff --git a/.github/.gitignore b/.github/.gitignore index c3421a1..c4e1169 100644 --- a/.github/.gitignore +++ b/.github/.gitignore @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT .goassets diff --git a/.github/fetch-scripts.sh b/.github/fetch-scripts.sh index f333841..16b1338 100755 --- a/.github/fetch-scripts.sh +++ b/.github/fetch-scripts.sh @@ -8,7 +8,7 @@ # If you want to update the shared CI config, send a PR to # https://github.com/pion/.goassets instead of this repository. # -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT set -eu diff --git a/.github/install-hooks.sh b/.github/install-hooks.sh index 2bad37c..6e67313 100755 --- a/.github/install-hooks.sh +++ b/.github/install-hooks.sh @@ -8,7 +8,7 @@ # If you want to update the shared CI config, send a PR to # https://github.com/pion/.goassets instead of this repository. # -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT SCRIPT_PATH="$(realpath "$(dirname "$0")")" diff --git a/.github/workflows/api.yaml b/.github/workflows/api.yaml index 1032179..d4052c6 100644 --- a/.github/workflows/api.yaml +++ b/.github/workflows/api.yaml @@ -8,7 +8,7 @@ # If you want to update the shared CI config, send a PR to # https://github.com/pion/.goassets instead of this repository. # -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT name: API diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index ea9b825..f825e2e 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -8,7 +8,7 @@ # If you want to update the shared CI config, send a PR to # https://github.com/pion/.goassets instead of this repository. # -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT name: CodeQL diff --git a/.github/workflows/fuzz.yaml b/.github/workflows/fuzz.yaml index 2f888ad..cd43c19 100644 --- a/.github/workflows/fuzz.yaml +++ b/.github/workflows/fuzz.yaml @@ -8,7 +8,7 @@ # If you want to update the shared CI config, send a PR to # https://github.com/pion/.goassets instead of this repository. # -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT name: Fuzz diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 5dd3a99..0966ef1 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -8,7 +8,7 @@ # If you want to update the shared CI config, send a PR to # https://github.com/pion/.goassets instead of this repository. # -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT name: Lint diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3b94deb..fe0d389 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,7 +8,7 @@ # If you want to update the shared CI config, send a PR to # https://github.com/pion/.goassets instead of this repository. # -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT name: Release diff --git a/.github/workflows/renovate-go-sum-fix.yaml b/.github/workflows/renovate-go-sum-fix.yaml index b7bb1b4..28cf9e2 100644 --- a/.github/workflows/renovate-go-sum-fix.yaml +++ b/.github/workflows/renovate-go-sum-fix.yaml @@ -8,7 +8,7 @@ # If you want to update the shared CI config, send a PR to # https://github.com/pion/.goassets instead of this repository. # -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT name: Fix go.sum diff --git a/.github/workflows/reuse.yml b/.github/workflows/reuse.yml index 8633a12..3dfd683 100644 --- a/.github/workflows/reuse.yml +++ b/.github/workflows/reuse.yml @@ -8,7 +8,7 @@ # If you want to update the shared CI config, send a PR to # https://github.com/pion/.goassets instead of this repository. # -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT name: REUSE Compliance Check diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index ab6ebae..6e34f4f 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -8,7 +8,7 @@ # If you want to update the shared CI config, send a PR to # https://github.com/pion/.goassets instead of this repository. # -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT name: Test diff --git a/.github/workflows/tidy-check.yaml b/.github/workflows/tidy-check.yaml index 7ed07ba..f2c3538 100644 --- a/.github/workflows/tidy-check.yaml +++ b/.github/workflows/tidy-check.yaml @@ -8,7 +8,7 @@ # If you want to update the shared CI config, send a PR to # https://github.com/pion/.goassets instead of this repository. # -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT name: Go mod tidy diff --git a/.gitignore b/.gitignore index 6e2f206..2394557 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT ### JetBrains IDE ### diff --git a/.golangci.yml b/.golangci.yml index 4b4025f..43af4c3 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT version: "2" diff --git a/.goreleaser.yml b/.goreleaser.yml index 30093e9..8577d86 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT builds: diff --git a/.reuse/dep5 b/.reuse/dep5 index b26c56d..ebb85e4 100644 --- a/.reuse/dep5 +++ b/.reuse/dep5 @@ -3,9 +3,9 @@ Upstream-Name: Pion Source: https://github.com/pion/ Files: README.md DESIGN.md **/README.md AUTHORS.txt renovate.json go.mod go.sum **/go.mod **/go.sum .eslintrc.json package.json examples.json sfu-ws/flutter/.gitignore sfu-ws/flutter/pubspec.yaml c-data-channels/webrtc.h examples/examples.json yarn.lock -Copyright: 2023 The Pion community +Copyright: 2026 The Pion community License: MIT Files: testdata/seed/* testdata/fuzz/* **/testdata/fuzz/* api/*.txt -Copyright: 2023 The Pion community +Copyright: 2026 The Pion community License: CC0-1.0 diff --git a/codecov.yml b/codecov.yml index 263e4d4..b9639c2 100644 --- a/codecov.yml +++ b/codecov.yml @@ -3,7 +3,7 @@ # # It is automatically copied from https://github.com/pion/.goassets repository. # -# SPDX-FileCopyrightText: 2023 The Pion community +# SPDX-FileCopyrightText: 2026 The Pion community # SPDX-License-Identifier: MIT coverage: diff --git a/decoder.go b/decoder.go index 60e2ad0..2d4a42e 100644 --- a/decoder.go +++ b/decoder.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT // Package opus provides a Opus Audio Codec RFC 6716 implementation diff --git a/decoder_test.go b/decoder_test.go index 528b5b8..90757db 100644 --- a/decoder_test.go +++ b/decoder_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package opus diff --git a/errors.go b/errors.go index 605b51e..75ee0a4 100644 --- a/errors.go +++ b/errors.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package opus diff --git a/examples/decode/main.go b/examples/decode/main.go index d83ca08..9e3772d 100644 --- a/examples/decode/main.go +++ b/examples/decode/main.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT // Package main is an example of an Opus decoder that save the output PCM to disk diff --git a/examples/playback/main.go b/examples/playback/main.go index 76b4495..745ad84 100644 --- a/examples/playback/main.go +++ b/examples/playback/main.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package main diff --git a/fuzz_test.go b/fuzz_test.go index 68562fc..6a0a9f0 100644 --- a/fuzz_test.go +++ b/fuzz_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT //go:build go1.18 diff --git a/internal/bitdepth/bitdepth.go b/internal/bitdepth/bitdepth.go index 4ec5a66..71c9eab 100644 --- a/internal/bitdepth/bitdepth.go +++ b/internal/bitdepth/bitdepth.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT // Package bitdepth provides utilities to convert between different audio bitdepths diff --git a/internal/bitdepth/bitdepth_test.go b/internal/bitdepth/bitdepth_test.go index c2d6bb3..ef6dd69 100644 --- a/internal/bitdepth/bitdepth_test.go +++ b/internal/bitdepth/bitdepth_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package bitdepth diff --git a/internal/rangecoding/decoder.go b/internal/rangecoding/decoder.go index 1f7ed03..75af0ac 100644 --- a/internal/rangecoding/decoder.go +++ b/internal/rangecoding/decoder.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package rangecoding diff --git a/internal/rangecoding/decoder_test.go b/internal/rangecoding/decoder_test.go index f14a784..c47b312 100644 --- a/internal/rangecoding/decoder_test.go +++ b/internal/rangecoding/decoder_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package rangecoding diff --git a/internal/rangecoding/rangecoding.go b/internal/rangecoding/rangecoding.go index 462c5e6..ab89d9b 100644 --- a/internal/rangecoding/rangecoding.go +++ b/internal/rangecoding/rangecoding.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT // Package rangecoding provides a Range coder for the Opus bitstream diff --git a/internal/resample/resample.go b/internal/resample/resample.go index aff3754..7df5cc1 100644 --- a/internal/resample/resample.go +++ b/internal/resample/resample.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT // Package resample provides tools to resample audio diff --git a/internal/silk/codebook.go b/internal/silk/codebook.go index 5cb5256..e31342c 100644 --- a/internal/silk/codebook.go +++ b/internal/silk/codebook.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package silk diff --git a/internal/silk/decoder.go b/internal/silk/decoder.go index 6292b37..930de92 100644 --- a/internal/silk/decoder.go +++ b/internal/silk/decoder.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package silk diff --git a/internal/silk/decoder_test.go b/internal/silk/decoder_test.go index 049cab8..bcd6c9a 100644 --- a/internal/silk/decoder_test.go +++ b/internal/silk/decoder_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package silk diff --git a/internal/silk/errors.go b/internal/silk/errors.go index f1e9749..99a7a1f 100644 --- a/internal/silk/errors.go +++ b/internal/silk/errors.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package silk diff --git a/internal/silk/icdf.go b/internal/silk/icdf.go index 9e02402..b08a5c8 100644 --- a/internal/silk/icdf.go +++ b/internal/silk/icdf.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package silk diff --git a/internal/silk/silk.go b/internal/silk/silk.go index c3d3450..cda1b94 100644 --- a/internal/silk/silk.go +++ b/internal/silk/silk.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT // Package silk provides a Silk coder diff --git a/internal/silk/silk_test.go b/internal/silk/silk_test.go index 25022fb..3479b99 100644 --- a/internal/silk/silk_test.go +++ b/internal/silk/silk_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package silk diff --git a/pkg/oggreader/oggreader.go b/pkg/oggreader/oggreader.go index cf3fb76..be93f74 100644 --- a/pkg/oggreader/oggreader.go +++ b/pkg/oggreader/oggreader.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT // Package oggreader implements the Ogg media container reader diff --git a/pkg/oggreader/oggreader_test.go b/pkg/oggreader/oggreader_test.go index fdcfff2..370f742 100644 --- a/pkg/oggreader/oggreader_test.go +++ b/pkg/oggreader/oggreader_test.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package oggreader diff --git a/table_of_contents_header.go b/table_of_contents_header.go index c5a5bd7..8eb6082 100644 --- a/table_of_contents_header.go +++ b/table_of_contents_header.go @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2023 The Pion community +// SPDX-FileCopyrightText: 2026 The Pion community // SPDX-License-Identifier: MIT package opus diff --git a/testdata/tiny.ogg.license b/testdata/tiny.ogg.license index 40eb56b..99ccdc5 100644 --- a/testdata/tiny.ogg.license +++ b/testdata/tiny.ogg.license @@ -1,2 +1,2 @@ -SPDX-FileCopyrightText: 2023 The Pion community +SPDX-FileCopyrightText: 2026 The Pion community SPDX-License-Identifier: MIT \ No newline at end of file