Skip to content

Commit

Permalink
chore(ci): bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Curve committed May 13, 2024
1 parent c070950 commit dae2cab
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:

steps:
- name: 📥 Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: 🖥️ Setup Environment
uses: ./.github/actions/setup
Expand All @@ -45,7 +45,7 @@ jobs:
install-vtk: ${{ matrix.vtk-system }}

- name: 🦥 Cache Dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
key: test-${{ matrix.os }}-${{ matrix.config }}-${{ matrix.vtk-system }}
path: build
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,12 @@ jobs:
run: doxygen docs/Doxyfile

- name: 🚀 Upload Artifact
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v3
with:
path: html

- name: 📃 Setup Pages
uses: actions/configure-pages@v3
uses: actions/configure-pages@v5

- name: 📦 Deploy
id: deployment
uses: actions/deploy-pages@v2
uses: actions/deploy-pages@v4
2 changes: 1 addition & 1 deletion .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 📥 Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: 📋 Install Dependencies
run: pip install -U cmakelang
Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
- name: 📥 Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: 🖥️ Setup Environment
uses: ./.github/actions/setup
Expand All @@ -29,7 +29,7 @@ jobs:
install-vtk: false

- name: 🦥 Cache Dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
key: python-${{ matrix.os }}
path: build
Expand All @@ -50,7 +50,7 @@ jobs:
./venv/bin/python -c "import viennals2d; print(viennals2d.__doc__)"
- name: 📦 Upload Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Pre-Built (${{ matrix.os }})
path: venv
Expand All @@ -69,15 +69,16 @@ jobs:

steps:
- name: 📥 Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: 🖥️ Setup Environment
uses: ./.github/actions/setup
with:
container: ${{ matrix.os }}
install-vtk: false

- uses: actions/setup-python@v3
- name: 🐍 Setup Python
uses: actions/setup-python@v5

- name: 🛞 CIBuildWheel
run: python -m pip install cibuildwheel==2.17.0
Expand Down

0 comments on commit dae2cab

Please sign in to comment.