From 8a6efc14a13108ab5e9a847d59f8092ba2f4ae5c Mon Sep 17 00:00:00 2001 From: Bo-Yi Wu Date: Fri, 6 Oct 2023 23:45:51 +0800 Subject: [PATCH] chore: update GitHub Actions versions in workflow files - Update the version of `actions/checkout` from `v3` to `v4` in `.github/workflows/codeql.yml` - Update the version of `actions/setup-go` from `v3` to `v4` in `.github/workflows/go.yml` - Update the version of `actions/checkout` from `v3` to `v4` in `.github/workflows/go.yml` - Update the version of `actions/setup-go` from `v3` to `v4` in `.github/workflows/go.yml` - Update the version of `actions/checkout` from `v3` to `v4` in `.github/workflows/goreleaser.yml` Signed-off-by: Bo-Yi Wu --- .github/workflows/codeql.yml | 2 +- .github/workflows/go.yml | 8 ++++---- .github/workflows/goreleaser.yml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 2d9bcdd..7de6fd5 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -38,7 +38,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 1b70989..e9e18ca 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -13,11 +13,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Setup go - uses: actions/setup-go@v3 + uses: actions/setup-go@v4 with: go-version: '^1.18' - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup golangci-lint uses: golangci/golangci-lint-action@v3 with: @@ -40,12 +40,12 @@ jobs: GOPROXY: https://proxy.golang.org steps: - name: Set up Go ${{ matrix.go }} - uses: actions/setup-go@v3 + uses: actions/setup-go@v4 with: go-version: ${{ matrix.go }} - name: Checkout Code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.ref }} diff --git a/.github/workflows/goreleaser.yml b/.github/workflows/goreleaser.yml index 64ed8b2..8e698de 100644 --- a/.github/workflows/goreleaser.yml +++ b/.github/workflows/goreleaser.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 -