Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/codespace-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v4
- uses: actions/setup-python@v6
with:
python-version: "3.12"

- name: Checkout codespace
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: PreTeXtBook/pretext-codespace
token: ${{ secrets.PUSH_CODESPACES }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/deploy-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
outputs:
ready: ${{ steps.prep.outputs.ready }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: actions/setup-python@v4
- uses: actions/setup-python@v6
with:
python-version: 3.12

Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:

- name: Upload prepared source
if: ${{ steps.prep.outputs.ready == 'true' }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: nightly-prepared-source
path: |
Expand All @@ -83,10 +83,10 @@ jobs:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it.
- uses: actions/checkout@v4
- uses: actions/checkout@v6

# Sets up python3
- uses: actions/setup-python@v4
- uses: actions/setup-python@v6
with:
python-version: 3.12

Expand All @@ -102,7 +102,7 @@ jobs:
sudo apt-get -y install python3-louis librsvg2-bin libcairo2-dev

- name: Download prepared source
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: nightly-prepared-source
path: .
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@ jobs:
runs-on: ubuntu-22.04
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
ref: ${{ inputs.branch }}

# Sets up python3
- uses: actions/setup-python@v4
- uses: actions/setup-python@v6
with:
python-version: 3.12

Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Download prepared source
if: ${{ inputs.source-artifact != '' }}
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: ${{ inputs.source-artifact }}
path: .
- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: '22'

Expand Down Expand Up @@ -55,10 +55,10 @@ jobs:
container: oscarlevin/pretext-full

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Download prepared source
if: ${{ inputs.source-artifact != '' }}
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: ${{ inputs.source-artifact }}
path: .
Expand All @@ -67,7 +67,7 @@ jobs:
run: python --version

- name: set up node
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: '22'

Expand Down Expand Up @@ -121,21 +121,21 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Download prepared source
if: ${{ inputs.source-artifact != '' }}
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: ${{ inputs.source-artifact }}
path: .

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

- name: set up node
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: '22'

Expand Down Expand Up @@ -182,10 +182,10 @@ jobs:
schema:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Download prepared source
if: ${{ inputs.source-artifact != '' }}
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: ${{ inputs.source-artifact }}
path: .
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update_core_commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ jobs:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
ref: ${{ inputs.branch }}

# Sets up python3
- uses: actions/setup-python@v4
- uses: actions/setup-python@v6
with:
python-version: 3.8

Expand Down
Loading