-
-
Notifications
You must be signed in to change notification settings - Fork 231
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into variable-naming
- Loading branch information
Showing
6 changed files
with
18 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,21 +8,21 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].3 | ||
with: | ||
fetch-depth: 0 | ||
sparse-checkout: | | ||
docs | ||
- name: Setup python | ||
uses: actions/setup-python@v5.0.0 | ||
uses: actions/setup-python@v5.1.0 | ||
with: | ||
python-version: 3.x | ||
- name: Get pip cache directory | ||
id: pip-cache | ||
run: | | ||
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT | ||
- name: Cache dependencies | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].2 | ||
with: | ||
path: ${{ steps.pip-cache.outputs.dir }} | ||
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} | ||
|
@@ -40,21 +40,21 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].3 | ||
with: | ||
fetch-depth: 0 | ||
sparse-checkout: | | ||
docs | ||
- name: Setup python | ||
uses: actions/setup-python@v5.0.0 | ||
uses: actions/setup-python@v5.1.0 | ||
with: | ||
python-version: 3.x | ||
- name: Get pip cache directory | ||
id: pip-cache | ||
run: | | ||
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT | ||
- name: Cache dependencies | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].2 | ||
with: | ||
path: ${{ steps.pip-cache.outputs.dir }} | ||
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ jobs: | |
editorconfig-checker: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected].1 | ||
- uses: actions/[email protected].3 | ||
- name: editorconfig-checker | ||
run: | | ||
docker run --rm \ | ||
|
@@ -16,7 +16,7 @@ jobs: | |
markdownlint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected].1 | ||
- uses: actions/[email protected].3 | ||
- name: markdownlint | ||
run: | | ||
docker run --rm \ | ||
|
@@ -29,7 +29,7 @@ jobs: | |
shellcheck: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected].1 | ||
- uses: actions/[email protected].3 | ||
- name: shellcheck | ||
run: | | ||
find "${GITHUB_WORKSPACE}" -name '*.sh' -exec \ | ||
|
@@ -41,7 +41,7 @@ jobs: | |
shfmt: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected].1 | ||
- uses: actions/[email protected].3 | ||
- name: shfmt | ||
run: | | ||
find "${GITHUB_WORKSPACE}" -name '*.sh' -exec \ | ||
|
@@ -54,7 +54,7 @@ jobs: | |
yamllint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected].1 | ||
- uses: actions/[email protected].3 | ||
- name: yamllint | ||
run: | | ||
docker run --rm \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ jobs: | |
matrix: | ||
os: [ubuntu-latest] | ||
steps: | ||
- uses: actions/[email protected].1 | ||
- uses: actions/[email protected].3 | ||
- name: run | ||
env: | ||
CI: true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ jobs: | |
validate-docs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected].1 | ||
- uses: actions/[email protected].3 | ||
- name: Validate Documentation | ||
run: | | ||
for APPFOLDER in compose/.apps/*; do | ||
|
@@ -28,7 +28,7 @@ jobs: | |
# validate-images: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/[email protected].1 | ||
# - uses: actions/[email protected].3 | ||
# - name: Validate Images | ||
# run: | | ||
# for APPFOLDER in compose/.apps/*; do | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
mkdocs-git-revision-date-localized-plugin==1.2.4 | ||
mkdocs-material==9.5.13 | ||
mkdocs-material==9.5.18 | ||
mkdocs-minify-plugin==0.8.0 | ||
mkdocs-redirects==1.2.1 |