From 5f54514c55a86204803d81d79fc8f3968e49fe38 Mon Sep 17 00:00:00 2001 From: Fuzzbawls Date: Tue, 19 Mar 2024 18:10:02 -0700 Subject: [PATCH] [GA] Update actions to node20 --- .github/workflows/main.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 6dc7c5e..51774e7 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -10,12 +10,12 @@ jobs: shell: bash steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Initialize Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: 3.7 @@ -60,13 +60,13 @@ jobs: steps: - name: Get Source - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Python 3.7 - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: 3.7 - name: Setup pip cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ matrix.config.cachepath }} key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}