From 07e6b28102f55325087f67bcbb3ccb8f447d2e9d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 19 Oct 2023 11:55:54 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v4 --- .github/workflows/go-build.yml | 2 +- .github/workflows/go-lint.yml | 2 +- .github/workflows/go-test.yml | 2 +- .github/workflows/tag-autorelease.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/go-build.yml b/.github/workflows/go-build.yml index 30ca5d7..dd8978f 100644 --- a/.github/workflows/go-build.yml +++ b/.github/workflows/go-build.yml @@ -13,7 +13,7 @@ jobs: matrix: go-version: [ '1.18.x', '1.19.x' ] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # - name: Setup Go ${{ matrix.go-version }} uses: actions/setup-go@v4 diff --git a/.github/workflows/go-lint.yml b/.github/workflows/go-lint.yml index f3f6f34..fb17f01 100644 --- a/.github/workflows/go-lint.yml +++ b/.github/workflows/go-lint.yml @@ -13,7 +13,7 @@ jobs: name: lint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: golangci-lint uses: golangci/golangci-lint-action@v2 with: diff --git a/.github/workflows/go-test.yml b/.github/workflows/go-test.yml index fce4933..a0e0984 100644 --- a/.github/workflows/go-test.yml +++ b/.github/workflows/go-test.yml @@ -12,7 +12,7 @@ jobs: go-version: [ '1.18.x', '1.19.x' ] # steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # - name: Setup Go ${{ matrix.go-version }} uses: actions/setup-go@v4 diff --git a/.github/workflows/tag-autorelease.yml b/.github/workflows/tag-autorelease.yml index 219e42b..f13dbcb 100644 --- a/.github/workflows/tag-autorelease.yml +++ b/.github/workflows/tag-autorelease.yml @@ -15,7 +15,7 @@ jobs: # steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 # - name: Add ffmpeg dependency uses: FedericoCarboni/setup-ffmpeg@v2