From 793edf5c73f9c76f43991489dbb321393d4d028c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 4 Sep 2023 14:20:38 +0000 Subject: [PATCH] Update actions/checkout action to v4 --- .github/workflows/go-build.yml | 2 +- .github/workflows/go-lint.yml | 2 +- .github/workflows/tag-autorelease.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/go-build.yml b/.github/workflows/go-build.yml index 572ab0d..3ce6a8c 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 e594fbc..40f44a5 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/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