From 405725f7d87acc2f37e3f91027116b18c54d1153 Mon Sep 17 00:00:00 2001 From: phvalguima Date: Wed, 6 Nov 2024 09:09:03 +0100 Subject: [PATCH] Fix action/checkout version to v4 (#498) Our CIs are failing with: https://github.com/canonical/opensearch-operator/actions/runs/11675736324/job/32510812135 This PR updates `actions/checkout` to v4, in line with other charms. --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index d78f4dfce..57f3821ab 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -24,7 +24,7 @@ jobs: timeout-minutes: 10 steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install tox & poetry run: | pipx install tox @@ -39,7 +39,7 @@ jobs: timeout-minutes: 5 steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - run: |