From 0f4d1d2ff8a1eefb4e8628e4655ba4dd596f867b Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Tue, 12 Aug 2025 02:11:52 +0000 Subject: [PATCH] chore: update actions/checkout action to v5 --- .github/workflows/integration-tests-on-emulator.yml | 2 +- .github/workflows/integration-tests-on-production.yml | 2 +- .github/workflows/samples.yml | 2 +- .github/workflows/snippets.yml | 2 +- .github/workflows/unit-tests.yml | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/integration-tests-on-emulator.yml b/.github/workflows/integration-tests-on-emulator.yml index c0c27e42..643ebffa 100644 --- a/.github/workflows/integration-tests-on-emulator.yml +++ b/.github/workflows/integration-tests-on-emulator.yml @@ -18,7 +18,7 @@ jobs: with: go-version: 1.24.x - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run integration tests on emulator run: go test -race env: diff --git a/.github/workflows/integration-tests-on-production.yml b/.github/workflows/integration-tests-on-production.yml index 58489454..6a97f3e1 100644 --- a/.github/workflows/integration-tests-on-production.yml +++ b/.github/workflows/integration-tests-on-production.yml @@ -27,7 +27,7 @@ jobs: with: go-version: 1.24.x - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Auth uses: google-github-actions/auth@v2 with: diff --git a/.github/workflows/samples.yml b/.github/workflows/samples.yml index 9edadd71..ab0cd456 100644 --- a/.github/workflows/samples.yml +++ b/.github/workflows/samples.yml @@ -13,7 +13,7 @@ jobs: with: go-version: ${{ matrix.go-version }} - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run samples working-directory: ./examples run: go test -short diff --git a/.github/workflows/snippets.yml b/.github/workflows/snippets.yml index f2a16d37..123d5199 100644 --- a/.github/workflows/snippets.yml +++ b/.github/workflows/snippets.yml @@ -13,7 +13,7 @@ jobs: with: go-version: ${{ matrix.go-version }} - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run snippets working-directory: ./snippets run: go test -short diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 2e7f65c5..30b97262 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -16,7 +16,7 @@ jobs: with: go-version: ${{ matrix.go-version }} - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run unit tests run: go test -race -short @@ -33,7 +33,7 @@ jobs: go install honnef.co/go/tools/cmd/staticcheck@latest - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: vet . run: go vet ./...