Skip to content
Merged
Changes from 3 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
12 changes: 6 additions & 6 deletions .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
uses: actions/checkout@v3

- name: Refresh Packages
run: sudo apt-fast -y update
run: sudo apt-get -y update

- name: Install Dependencies
run: xargs -a dependencies sudo apt-fast install -y
run: xargs -a dependencies sudo apt-get install -y

- name: Python Setup
uses: actions/setup-python@v4
Expand All @@ -34,7 +34,7 @@ jobs:
env:
PR_NUMBER: ${{ github.event.number }}
ID: ${{ github.run_attempt }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: FTCDOCS-PDF
path: |
Expand All @@ -49,7 +49,7 @@ jobs:
uses: actions/checkout@v3

- name: Refresh Packages
run: sudo apt-fast -y update
run: sudo apt-get -y update

- name: Python Setup
uses: actions/setup-python@v4
Expand All @@ -66,7 +66,7 @@ jobs:
run: make -C docs/ html

- name: Archive Site
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: FTCDOCS-HTML
path: 'docs/build/html'
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:

- name: Archive Log
if: ${{ failure() }}
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
env:
PR_NUMBER: ${{ github.event.number }}
ID: ${{ github.run_attempt }}
Expand Down
Loading