From 4a5b769636c1e7fe51acb86a3db7fe2c2445c2a2 Mon Sep 17 00:00:00 2001 From: Chris Riccomini Date: Thu, 31 Aug 2023 12:12:40 -0700 Subject: [PATCH] Update `actions/checkout@v2` to v3 Looks like Github is starting to complain about v2 deprecation. Closes #382 --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index cda04ce..0eb7a81 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -16,7 +16,7 @@ jobs: python-version: ['3.10'] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Build using Python ${{ matrix.python-version }} uses: actions/setup-python@v4