Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up buildx command
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
go-version: ${{ matrix.version }}
id: go
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 100
fetch-tags: true
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
go-version: ${{ matrix.version }}
id: go
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 100
fetch-tags: true
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
go-version: ${{ matrix.version }}
id: go
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 100
fetch-tags: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up emulation
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,12 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: ${{ matrix.version }}
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
uses: golangci/golangci-lint-action@v9
with:
version: v1.64.5
args: --exclude-dirs-use-default --exclude-use-default
version: v2.6
only-new-issues: true
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
go-version: ${{ matrix.version }}
id: go
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Build binary
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
go-version: ${{ matrix.version }}
id: go
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Build binary
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
go-version: ${{ matrix.version }}
id: go
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Build binary
Expand All @@ -118,7 +118,7 @@ jobs:
upload_url: ${{ steps.create_release.outputs.upload_url }}
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Create release
Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
- { os: 'darwin', arch: 'universal' }
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Download artifact
Expand Down Expand Up @@ -175,7 +175,7 @@ jobs:
- { os: 'windows', arch: 'amd64' }
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Download artifact
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
go-version: ${{ matrix.version }}
id: go
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Build binary
run: make ghostunnel
- name: Run tests
Expand All @@ -37,7 +37,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Run tests
run: GO_VERSION=${{ matrix.version }} make docker-test
- name: Codecov upload
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
- name: Install gocovmerge
run: go install github.com/wadey/gocovmerge@latest
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Run tests
run: make test
- name: Codecov upload
Expand Down
Loading