From 985eda90db7fb2f130bf8328f1b055a523fc7217 Mon Sep 17 00:00:00 2001 From: "anr (they/them)" <4221605+justanr@users.noreply.github.com> Date: Mon, 28 Oct 2024 02:51:29 -0400 Subject: [PATCH] Fix GHA deprecated action warnings --- .github/workflows/python.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 62455d643..c1230a8ee 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -15,9 +15,9 @@ jobs: python-version: ["3.8"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Run checks @@ -31,9 +31,9 @@ jobs: python-version: ["3.x"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Run checks @@ -47,9 +47,9 @@ jobs: python-version: ["3.x"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Run checks