Skip to content
This repository was archived by the owner on Sep 2, 2025. It is now read-only.

Commit c69b6f8

Browse files
authored
Merge pull request #2092 from splunk/last_updated
Add time stamp to all docs
2 parents 4f3f045 + 0d869cd commit c69b6f8

File tree

10 files changed

+484
-9
lines changed

10 files changed

+484
-9
lines changed

.github/workflows/check-links.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ jobs:
2828
runs-on: ubuntu-latest
2929
steps:
3030
- name: Checkout
31-
uses: actions/checkout@v3
31+
uses: actions/checkout@v4
32+
with:
33+
fetch-depth: 0
3234
- name: Set up Python
3335
uses: actions/setup-python@v3
3436
with:

.github/workflows/test-docs.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ jobs:
2626
runs-on: ubuntu-latest
2727
steps:
2828
- name: Checkout
29-
uses: actions/checkout@v3
29+
uses: actions/checkout@v4
30+
with:
31+
fetch-depth: 0
3032
- name: Set up Python
3133
uses: actions/setup-python@v3
3234
with:

.github/workflows/vale-linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: macos-latest
1919
name: Lint changed files
2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222
with:
2323
fetch-depth: 0
2424
- name: Download lastest Splunk style

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Read through this document before submitting any pull request.
2525
- Everyone else needs to create their own GitHub account.
2626
2. If you plan to use SSH to synchronize your local computer with your GitHub account, you need to create an SSH key on your local
2727
computer, add the key to your OpenSSH authentication agent, and add the public key file to your GitHub account. The GitHub docs
28-
describe how to perform these tasks.
28+
describe how to run these tasks.
2929

3030
## Decide the type of edit
3131

Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ FROM sphinxdoc/sphinx
22

33
WORKDIR /docs
44
COPY requirements.txt /docs
5+
RUN apt-get update && \
6+
apt-get upgrade -y && \
7+
apt-get install -y git
58
RUN pip3 install --upgrade pip
69
RUN pip3 install -r requirements.txt --force-reinstall --no-cache-dir --root-user-action=ignore
710
RUN pip3 install sphinx-autobuild --root-user-action=ignore

0 commit comments

Comments
 (0)