From b5396d2c7c263b479505e08d14691c6c034c7a11 Mon Sep 17 00:00:00 2001 From: Marius Gedminas Date: Fri, 3 May 2024 13:20:37 +0300 Subject: [PATCH] Update GHA action versions --- .github/workflows/build.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5b705f1..b68f2dd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,12 +33,12 @@ 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 }}" - name: Pip cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('setup.py') }} @@ -82,13 +82,13 @@ jobs: - name: Git clone uses: actions/checkout@v4 - - name: Set up Python ${{ env.default_python || '3.9' }} - uses: actions/setup-python@v4 + - name: Set up Python ${{ env.default_python || '3.12' }} + uses: actions/setup-python@v5 with: - python-version: "${{ env.default_python || '3.9' }}" + python-version: "${{ env.default_python || '3.12' }}" - name: Pip cache - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ matrix.toxenv }}-${{ hashFiles('tox.ini') }}