diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index bf274c58..dd59679a 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -1,7 +1,3 @@ -# Optional workflow for Go Static Code Analysis check, -# copy this file to yours /.github/workflows folder only if you need this. -# See https://mailgun.atlassian.net/wiki/spaces/ENG/pages/4278943767/Go+Static+Code+Analysis+Linters - name: Lint on: diff --git a/.github/workflows/on-pull-request.yml b/.github/workflows/on-pull-request.yml index 3f0d8191..53a41ccb 100644 --- a/.github/workflows/on-pull-request.yml +++ b/.github/workflows/on-pull-request.yml @@ -16,7 +16,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout - uses: actions/checkout@master + uses: actions/checkout@v3 - name: Fetch git tags run: git fetch --tags @@ -25,14 +25,14 @@ jobs: run: ./contrib/check-version.sh - name: Set up Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v3 with: go-version: ${{ matrix.go-version }} - run: go env - name: Cache deps - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} diff --git a/.github/workflows/on-release.yml b/.github/workflows/on-release.yml index 6d45621d..3e51f4e3 100644 --- a/.github/workflows/on-release.yml +++ b/.github/workflows/on-release.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Fetch git tags run: git fetch --tags