Skip to main content

Fix some deprecation warnings in the GitHub Actions workflow

ID
caa05f9
date
2024-03-13 08:58:40+00:00
author
Alex Chan <alex@alexwlchan.net>
parent
a3fa662
message
Fix some deprecation warnings in the GitHub Actions workflow
changed files
1 file, 4 additions, 7 deletions

Changed files

.github/workflows/test.yml (1326) → .github/workflows/test.yml (1214)

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 7fc3d20..bbe8dae 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -12,15 +12,12 @@ on:
 jobs:
   test:
     runs-on: ubuntu-latest
-    strategy:
-      matrix:
-        python-version: ["3.12"]
     steps:
-    - uses: actions/checkout@v3
-    - name: Set up Python ${{ matrix.python-version }}
-      uses: actions/setup-python@v4
+    - uses: actions/checkout@v4
+    - name: Set up Python
+      uses: actions/setup-python@v5
       with:
-        python-version: ${{ matrix.python-version }}
+        python-version: "3.12"
     - name: Install dependencies
       run: |
         pip install -r requirements.txt