From 5dac01c525880a669c07e7d8c3431edf7a999742 Mon Sep 17 00:00:00 2001 From: ushiboy Date: Sun, 15 Sep 2024 10:53:04 +0900 Subject: [PATCH] fix deprecated action --- .github/workflows/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index 0621051..eee97b4 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -9,8 +9,8 @@ jobs: matrix: python-version: ['3.7', '3.8', '3.9', '3.10'] steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies