Skip to content

Commit

Permalink
Revert "Remove action version specifiers from docs workflow."
Browse files Browse the repository at this point in the history
This reverts commit 2d60500.
  • Loading branch information
samsrabin committed Oct 7, 2024
1 parent b7c888e commit 0752bec
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,17 @@ jobs:
name: Test building documentation with makefile
runs-on: ubuntu-latest
steps:
- uses: actions/checkout
- uses: actions/checkout@v3
with:
fetch-depth: 0
lfs: true
- name: Install python 3.x
uses: actions/setup-python
uses: actions/setup-python@v2
with:
python-version: '3.x'
# https://github.com/actions/cache/blob/main/examples.md#python---pip
- name: Cache pip
uses: actions/cache
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('doc/requirements.txt') }}
Expand All @@ -49,17 +49,17 @@ jobs:
name: Test building documentation with doc-builder
runs-on: ubuntu-latest
steps:
- uses: actions/checkout
- uses: actions/checkout@v3
with:
fetch-depth: 0
lfs: true
- name: Install python 3.x
uses: actions/setup-python
uses: actions/setup-python@v2
with:
python-version: '3.x'
# https://github.com/actions/cache/blob/main/examples.md#python---pip
- name: Cache pip
uses: actions/cache
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('doc/requirements.txt') }}
Expand Down

0 comments on commit 0752bec

Please sign in to comment.