From 02afba132f12d3bb2a1570a78c98abd2507febbf Mon Sep 17 00:00:00 2001 From: Tim Xylon Date: Thu, 9 Feb 2023 22:07:00 +0800 Subject: [PATCH] Replace deprecated 'set-output' --- .github/workflows/debug.yml | 4 ++-- .github/workflows/lint.yml | 7 ++----- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/debug.yml b/.github/workflows/debug.yml index 9a1d1cbb..495edddc 100644 --- a/.github/workflows/debug.yml +++ b/.github/workflows/debug.yml @@ -26,7 +26,7 @@ jobs: - name: Get latest go version id: version run: | - echo ::set-output name=go_version::$(curl -s https://raw.githubusercontent.com/actions/go-versions/main/versions-manifest.json | grep -oE '"version": "[0-9]{1}.[0-9]{1,}(.[0-9]{1,})?"' | head -1 | cut -d':' -f2 | sed 's/ //g; s/"//g') + echo go_version=$(curl -s https://raw.githubusercontent.com/actions/go-versions/main/versions-manifest.json | grep -oE '"version": "[0-9]{1}.[0-9]{1,}(.[0-9]{1,})?"' | head -1 | cut -d':' -f2 | sed 's/ //g; s/"//g') >> $GITHUB_OUTPUT - name: Setup Go uses: actions/setup-go@v3 with: @@ -192,7 +192,7 @@ jobs: - name: Get latest go version id: version run: | - echo ::set-output name=go_version::$(curl -s https://raw.githubusercontent.com/actions/go-versions/main/versions-manifest.json | grep -oE '"version": "[0-9]{1}.[0-9]{1,}(.[0-9]{1,})?"' | head -1 | cut -d':' -f2 | sed 's/ //g; s/"//g') + echo go_version=$(curl -s https://raw.githubusercontent.com/actions/go-versions/main/versions-manifest.json | grep -oE '"version": "[0-9]{1}.[0-9]{1,}(.[0-9]{1,})?"' | head -1 | cut -d':' -f2 | sed 's/ //g; s/"//g') >> $GITHUB_OUTPUT - name: Setup Go uses: actions/setup-go@v3 with: diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 62a72c74..de499524 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -8,7 +8,7 @@ on: paths-ignore: - '**.md' - '.github/**' - - '!.github/workflows/debug.yml' + - '!.github/workflows/lint.yml' pull_request: branches: - main-next @@ -26,7 +26,7 @@ jobs: - name: Get latest go version id: version run: | - echo ::set-output name=go_version::$(curl -s https://raw.githubusercontent.com/actions/go-versions/main/versions-manifest.json | grep -oE '"version": "[0-9]{1}.[0-9]{1,}(.[0-9]{1,})?"' | head -1 | cut -d':' -f2 | sed 's/ //g; s/"//g') + echo go_version=$(curl -s https://raw.githubusercontent.com/actions/go-versions/main/versions-manifest.json | grep -oE '"version": "[0-9]{1}.[0-9]{1,}(.[0-9]{1,})?"' | head -1 | cut -d':' -f2 | sed 's/ //g; s/"//g') >> $GITHUB_OUTPUT - name: Setup Go uses: actions/setup-go@v3 with: @@ -37,9 +37,6 @@ jobs: path: | ~/go/pkg/mod key: go-${{ hashFiles('**/go.sum') }} - - name: Get dependencies - run: | - go mod download -x - name: golangci-lint uses: golangci/golangci-lint-action@v3 with: