From 09a6ab5e11cd82939a92fbe86ba1e46dcdaf3391 Mon Sep 17 00:00:00 2001 From: drojf <1249449+drojf@users.noreply.github.com> Date: Sat, 14 Sep 2024 14:41:25 +1000 Subject: [PATCH] [CI] Upgrade actions where possible to fix node depreciation warnings --- .github/workflows/test_and_deploy.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index c0ba354..6a87402 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -32,11 +32,11 @@ jobs: python-version: [3.8] steps: # Download the repository - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # Setup python (Windows VM is Python 3.7 by default, we need at least Python 3.8) - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} @@ -89,11 +89,11 @@ jobs: steps: # Download the repository - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # Setup Python - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }}