diff --git a/.github/workflows/check_format.yaml b/.github/workflows/check_format.yaml index 8be3d53..7ce6d1d 100644 --- a/.github/workflows/check_format.yaml +++ b/.github/workflows/check_format.yaml @@ -17,7 +17,7 @@ jobs: 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 }} diff --git a/.github/workflows/test_package.yaml b/.github/workflows/test_package.yaml index bf4683f..ed0ccbb 100644 --- a/.github/workflows/test_package.yaml +++ b/.github/workflows/test_package.yaml @@ -21,7 +21,7 @@ jobs: fetch-depth: 0 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} @@ -33,7 +33,7 @@ jobs: python -c "req = open('setup.py').read().replace(' >= ', ' == ') ; open('setup.py', 'w').write(req)" # - name: Cache pip - # uses: actions/cache@v2 + # uses: actions/cache@v4 # id: cache # with: # path: ${{ env.pythonLocation }}