Skip to content

Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #1301

Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows

Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #1301

Workflow file for this run

name: Validate Push
on:
push:
branches-ignore:
- main
jobs:
check-license:
uses: ./.github/workflows/check-license.yml
run-tests:
# check-license is quick and we want to abort quickly if that fails
needs: check-license
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04]
python-version: [3.7, "3.10", "3.11"]
env:
ZEFHUB_AUTH_KEY: "GUEST"
steps:
########
# Git things
- uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Build
uses: ./.github/actions/build
timeout-minutes: 25
with:
python-version: ${{ matrix.python-version }}
os: ${{ matrix.os }}