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

chore(deps): bump the actions group with 4 updates #30091

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:

- name: Cache wheels
if: runner.os == 'macOS'
uses: actions/cache@v3
uses: actions/cache@v4
with:
# This path is specific to macOS - we really only need it for PyPy NumPy wheels
# See https://github.com/actions/cache/blob/master/examples.md#python---pip
Expand Down Expand Up @@ -219,7 +219,7 @@ jobs:

- name: Valgrind cache
if: matrix.valgrind
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-valgrind
with:
path: valgrind
Expand Down Expand Up @@ -645,7 +645,7 @@ jobs:
if: matrix.container != 'centos:7'

- name: Pin actions/checkout as required for centos:7
uses: actions/checkout@v3
uses: actions/checkout@v4
if: matrix.container == 'centos:7'

- name: Add Python 3 (RHEL 7)
Expand Down Expand Up @@ -694,7 +694,7 @@ jobs:
container: i386/debian:buster

steps:
- uses: actions/checkout@v1 # v1 is required to run inside docker
- uses: actions/checkout@v4 # v1 is required to run inside docker

- name: Install requirements
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci_sh_def.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:

- name: Cache wheels
if: runner.os == 'macOS'
uses: actions/cache@v3
uses: actions/cache@v4
with:
# This path is specific to macOS - we really only need it for PyPy NumPy wheels
# See https://github.com/actions/cache/blob/master/examples.md#python---pip
Expand Down Expand Up @@ -234,7 +234,7 @@ jobs:

- name: Valgrind cache
if: matrix.valgrind
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-valgrind
with:
path: valgrind
Expand Down Expand Up @@ -666,7 +666,7 @@ jobs:
if: matrix.container != 'centos:7'

- name: Pin actions/checkout as required for centos:7
uses: actions/checkout@v3
uses: actions/checkout@v4
if: matrix.container == 'centos:7'

- name: Add Python 3 (RHEL 7)
Expand Down Expand Up @@ -716,7 +716,7 @@ jobs:
container: i386/debian:buster

steps:
- uses: actions/checkout@v1 # v1 is required to run inside docker
- uses: actions/checkout@v4 # v1 is required to run inside docker

- name: Install requirements
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python312dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ jobs:
- uses: actions/checkout@v4

- name: Setup Python 3.12-dev
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.12-dev"

- name: Setup Boost
run: sudo apt-get install libboost-dev

- name: Update CMake
uses: jwlawson/actions-setup-cmake@v1.13
uses: jwlawson/actions-setup-cmake@v1.14

- name: Run pip installs
run: |
Expand Down
Loading