From 61e77c05d88d3ef08a0c0fa9a8388abac4489276 Mon Sep 17 00:00:00 2001 From: Mauro Amico Date: Tue, 21 Jan 2025 19:22:23 +0100 Subject: [PATCH] gha (#23) --- .github/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index baf7cce..0e62512 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,20 +8,20 @@ jobs: strategy: max-parallel: 4 matrix: - python: ["3.7"] + python: ["3.8"] plone: ["52"] # exclude: # - python: "3.7" # plone: "51" steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: Cache eggs - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: eggs key: ${{ runner.OS }}-build-python${{ matrix.python }}-${{ matrix.plone }} - name: Set up Python ${{ matrix.python }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python }} - name: Install dependencies