Skip to content

chore(deps): bump github.com/quic-go/quic-go from 0.47.0 to 0.48.2 #345

chore(deps): bump github.com/quic-go/quic-go from 0.47.0 to 0.48.2

chore(deps): bump github.com/quic-go/quic-go from 0.47.0 to 0.48.2 #345

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Dev
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
lint-test-build-linux:
name: Lint-Test-Build-Linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Deps
run: sudo apt update && sudo apt install -y libgtk-3-dev libayatana-appindicator3-dev
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Cache go module
uses: actions/cache@v4
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
args: --timeout 10m0s --verbose
- name: Test
run: make test
- name: Build
run: make .PHONY
lint-test-build-macos:
name: Lint-Test-Build-MacOS
runs-on: macOS-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Cache go module
uses: actions/cache@v4
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
args: --timeout 10m0s --verbose
- name: Test
run: make test
- name: Build
run: make .PHONY
lint-test-build-windows:
name: Lint-Test-Build-Windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Cache go module
uses: actions/cache@v4
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
args: --timeout 10m0s --verbose
- name: Test
run: go test -v ./...
- name: Build
run: cd cmd/easyss && go build -o easyss.exe -ldflags '-H=windowsgui'