From ccbf11ab068d6f3569c97e27e4d2442b55bdd5a0 Mon Sep 17 00:00:00 2001 From: Ashwin Maroli Date: Mon, 28 Oct 2024 20:39:11 +0530 Subject: [PATCH] Bump `actions/checkout` to v4 (#165) Merge pull request 165 --- .github/workflows/ci.yml | 4 ++-- .github/workflows/release.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1095739..dd2fd93 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: - "2.7" - "3.0" steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: fetch-depth: 5 - name: "Set up Ruby ${{ matrix.ruby_version }}" @@ -43,7 +43,7 @@ jobs: ruby_version: - 2.6 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: fetch-depth: 5 - name: "Set up Ruby ${{ matrix.ruby_version }}" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 58344cc..dbc603e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,7 @@ jobs: ruby_version: ["2.7"] steps: - name: Checkout Repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: "Set up Ruby ${{ matrix.ruby_version }}" uses: ruby/setup-ruby@v1 with: