diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index 95d1c72b67..7dd6855047 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -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 @@ -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 @@ -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 @@ -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 diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index b16f5bbdb2..7421c3d57e 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -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 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 5eeedfc260..776c11ca44 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -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 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7a4368f77b..3e1b4fd0b1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1c0b45af9d..84327348d9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 @@ -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 @@ -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