Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update versions of outdated GHA #3640

Merged
merged 1 commit into from Nov 23, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Expand Up @@ -94,9 +94,9 @@ jobs:
runs-on: ${{ matrix.platform }}
timeout-minutes: 75
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install Cygwin with Python
uses: cygwin/cygwin-install-action@v1
uses: cygwin/cygwin-install-action@v2
with:
platform: x86_64
packages: >-
Expand Down Expand Up @@ -124,13 +124,13 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 75
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install OS-level dependencies
run: |
sudo apt-get update
sudo apt-get install build-essential gfortran libopenblas-dev
- name: Setup Python
uses: actions/setup-python@v2
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FYI I included the same in #3643

uses: actions/setup-python@v4
with:
# Use a release that is not very new but still have a long life:
python-version: "3.8"
Expand Down