This is an automated email from the ASF dual-hosted git repository. kezhenxu94 pushed a commit to branch gover in repository https://gitbox.apache.org/repos/asf/skywalking-cli.git
commit ba6f455eb9fc9feb62b84eaacd153e0e86c284aa Author: kezhenxu94 <[email protected]> AuthorDate: Thu Mar 20 11:27:41 2025 +0800 Bump up a bunch of dependencies --- .github/workflows/CI.yaml | 36 +++++++++++++++++------------------ .github/workflows/publish-docker.yaml | 4 ++-- Dockerfile | 2 +- go.mod | 2 +- 4 files changed, 22 insertions(+), 22 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 1b24526..149e8d1 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -36,7 +36,7 @@ jobs: if: (github.event_name == 'schedule' && github.repository == 'apache/skywalking-cli') || (github.event_name != 'schedule') runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Check License Header uses: apache/skywalking-eyes@5dfa68f93380a5e57259faaf95088b7f133b5778 @@ -44,9 +44,9 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Setup Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: - go-version: "1.18" + go-version: "1.24" - name: Check Dependencies License run: make dependency-license @@ -59,7 +59,7 @@ jobs: outputs: cli: ${{ steps.filter-cli.outputs.any_modified }} steps: - - uses: actions/checkout@v3 # required for push event + - uses: actions/checkout@v4 # required for push event with: fetch-depth: 0 - name: Check for CLI source changes @@ -83,11 +83,11 @@ jobs: ( always() && ! cancelled() ) && ((github.event_name == 'schedule' && github.repository == 'apache/skywalking-cli') || needs.changes.outputs.cli == 'true') steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v5 - name: Set up Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: - go-version: 1.18 + go-version: 1.24 - name: golangci-lint uses: golangci/golangci-lint-action@v6 @@ -104,16 +104,16 @@ jobs: ( always() && ! cancelled() ) && ((github.event_name == 'schedule' && github.repository == 'apache/skywalking-cli') || needs.changes.outputs.cli == 'true') steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: - go-version: 1.18 + go-version: 1.24 - name: Check code generation run: make check-codegen - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: failure() with: name: check-diff @@ -138,11 +138,11 @@ jobs: oap: - a65a6e0ff2ef9c716131b36172399076307c35f1 # Feb 27th, 2024 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: - go-version: 1.18 + go-version: 1.24 - name: Test commands uses: apache/skywalking-infra-e2e@cf589b4a0b9f8e6f436f78e9cfd94a1ee5494180 @@ -160,11 +160,11 @@ jobs: ( always() && ! cancelled() ) && ((github.event_name == 'schedule' && github.repository == 'apache/skywalking-cli') || needs.changes.outputs.cli == 'true') steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: setup go - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: - go-version: '1.18' + go-version: '1.24' - name: run unit tests and report coverage working-directory: ./ @@ -196,4 +196,4 @@ jobs: [[ ${build} == 'success' ]] || [[ ${execute} != 'true' && ${build} == 'skipped' ]] || exit -3; [[ ${commandTests} == 'success' ]] || [[ ${execute} != 'true' && ${commandTests} == 'skipped' ]] || exit -4; [[ ${unitTests} == 'success' ]] || [[ ${execute} != 'true' && ${unitTests} == 'skipped' ]] || exit -5; - exit 0; \ No newline at end of file + exit 0; diff --git a/.github/workflows/publish-docker.yaml b/.github/workflows/publish-docker.yaml index 1ebca1c..dbc761b 100644 --- a/.github/workflows/publish-docker.yaml +++ b/.github/workflows/publish-docker.yaml @@ -43,7 +43,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v4 with: - go-version: 1.18 + go-version: 1.24 - name: Log in to the Container registry uses: docker/[email protected] with: @@ -51,4 +51,4 @@ jobs: username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Build and push docker images - run: make docker.push || make docker.push \ No newline at end of file + run: make docker.push || make docker.push diff --git a/Dockerfile b/Dockerfile index cd9a8bc..2bd2213 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM golang:1.18 AS builder +FROM golang:1.24 AS builder ARG VERSION diff --git a/go.mod b/go.mod index af7daee..caff7d7 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/apache/skywalking-cli -go 1.18 +go 1.24 require ( github.com/apache/skywalking-swck/operator v0.0.0-20220815142653-ed08076b7433
