Skip to content

Commit

Permalink
chore: Update github workflows (updating external action versions and…
Browse files Browse the repository at this point in the history
… move from python 3.10 to 3.11).
  • Loading branch information
Nico-AP committed Nov 15, 2024
1 parent 6100b58 commit b25ae7f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test-develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
max-parallel: 4
matrix:
db: [sqlite, mysql] # postgres
python-version: [3.8, 3.10.4]
python-version: [3.8, 3.11]
include:
- db: mysql
db_port: 3306
Expand All @@ -36,9 +36,9 @@ jobs:
--health-retries=3
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
Expand All @@ -61,17 +61,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: '16'
- name: Install Antora
run: npm i antora
- name: Generate Site
run: npx antora docs/antora-playbook.yml
- name: Publish to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/build/site

0 comments on commit b25ae7f

Please sign in to comment.