From e4c9ad879658aeedde1a778e37e2f782c14fd8d2 Mon Sep 17 00:00:00 2001 From: TwiN Date: Sat, 18 Jun 2022 12:58:26 -0400 Subject: [PATCH] chore(ci): Update actions/checkout to v3 --- .github/workflows/build.yml | 2 +- .github/workflows/publish-latest.yml | 2 +- .github/workflows/publish-release.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6fe4ccef..df5a258f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,7 +19,7 @@ jobs: with: go-version: 1.18 - name: Check out code into the Go module directory - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Build binary to make sure it works run: go build -mod vendor - name: Test diff --git a/.github/workflows/publish-latest.yml b/.github/workflows/publish-latest.yml index 8741b601..9da12bfd 100644 --- a/.github/workflows/publish-latest.yml +++ b/.github/workflows/publish-latest.yml @@ -12,7 +12,7 @@ jobs: timeout-minutes: 45 steps: - name: Check out code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Get image repository run: echo IMAGE_REPOSITORY=$(echo ${{ secrets.DOCKER_USERNAME }}/${{ github.event.repository.name }} | tr '[:upper:]' '[:lower:]') >> $GITHUB_ENV - name: Set up QEMU diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index 9835d4de..0ea7e381 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -9,7 +9,7 @@ jobs: timeout-minutes: 45 steps: - name: Check out code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Get image repository run: echo IMAGE_REPOSITORY=$(echo ${{ secrets.DOCKER_USERNAME }}/${{ github.event.repository.name }} | tr '[:upper:]' '[:lower:]') >> $GITHUB_ENV - name: Get the release