diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 72a035ca8..9c11296a7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,10 +22,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: Set up Python 3.8 + - name: Set up Python 3.12 uses: actions/setup-python@v5 with: - python-version: 3.8 + python-version: 3.12 - uses: actions/cache@v4 with: path: ${{ env.pythonLocation }} @@ -43,10 +43,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: Set up Python 3.8 + - name: Set up Python 3.12 uses: actions/setup-python@v5 with: - python-version: 3.8 + python-version: 3.12 - uses: actions/cache@v4 with: path: ${{ env.pythonLocation }} @@ -64,10 +64,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: Set up Python 3.8 + - name: Set up Python 3.12 uses: actions/setup-python@v5 with: - python-version: 3.8 + python-version: 3.12 - uses: actions/cache@v4 with: path: ${{ env.pythonLocation }} @@ -85,10 +85,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: Set up Python 3.8 + - name: Set up Python 3.12 uses: actions/setup-python@v5 with: - python-version: 3.8 + python-version: 3.12 - uses: actions/cache@v4 with: path: ${{ env.pythonLocation }} @@ -159,10 +159,10 @@ jobs: runs-on: macos-latest steps: - uses: actions/checkout@v4 - - name: Set up Python 3.8 + - name: Set up Python 3.12 uses: actions/setup-python@v5 with: - python-version: 3.8 + python-version: 3.12 - uses: actions/cache@v4 with: path: ${{ env.pythonLocation }} @@ -180,10 +180,10 @@ jobs: runs-on: windows-latest steps: - uses: actions/checkout@v4 - - name: Set up Python 3.8 + - name: Set up Python 3.12 uses: actions/setup-python@v5 with: - python-version: 3.8 + python-version: 3.12 - name: Install dependencies run: | python -m pip install --upgrade pip @@ -199,10 +199,10 @@ jobs: timeout-minutes: 6 steps: - uses: actions/checkout@v4 - - name: Set up Python 3.8 + - name: Set up Python 3.12 uses: actions/setup-python@v5 with: - python-version: 3.8 + python-version: 3.12 - uses: actions/cache@v4 with: path: ${{ env.pythonLocation }} @@ -232,10 +232,10 @@ jobs: name: Notebook check for ${{ matrix.type }} steps: - uses: actions/checkout@v4 - - name: Set up Python 3.8 + - name: Set up Python 3.12 uses: actions/setup-python@v5 with: - python-version: 3.8 + python-version: 3.12 - name: Install dependencies run: | python -m pip install --upgrade pip diff --git a/.github/workflows/daily-integration-check.yml b/.github/workflows/daily-integration-check.yml index 130d1aafa..b9dbe7ddf 100644 --- a/.github/workflows/daily-integration-check.yml +++ b/.github/workflows/daily-integration-check.yml @@ -2,24 +2,23 @@ name: Daily Integration Check on: schedule: - - cron: "0 14 * * *" # Daily at 14:00 UTC - workflow_dispatch: # so that we can also run manually, e.g. for testing - + - cron: "0 14 * * *" # Daily at 14:00 UTC + workflow_dispatch: # so that we can also run manually, e.g. for testing jobs: daily-integration-check: name: Pytest integration check env: - SUPERSTAQ_API_KEY : ${{ secrets.SUPERSTAQ_API_KEY }} - TEST_USER_IBMQ_TOKEN : ${{ secrets.TEST_USER_IBMQ_TOKEN }} + SUPERSTAQ_API_KEY: ${{ secrets.SUPERSTAQ_API_KEY }} + TEST_USER_IBMQ_TOKEN: ${{ secrets.TEST_USER_IBMQ_TOKEN }} runs-on: ubuntu-latest timeout-minutes: 15 steps: - uses: actions/checkout@v4 - - name: Set up Python 3.8 + - name: Set up Python 3.12 uses: actions/setup-python@v5 with: - python-version: 3.8 + python-version: 3.12 - name: Install dependencies run: | python -m pip install --upgrade pip @@ -32,7 +31,7 @@ jobs: uses: JasonEtco/create-an-issue@v2 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - TEST_USER_IBMQ_TOKEN : ${{ secrets.TEST_USER_IBMQ_TOKEN }} + TEST_USER_IBMQ_TOKEN: ${{ secrets.TEST_USER_IBMQ_TOKEN }} with: filename: .github/integration-check-failure-issue.md update_existing: true