这是indexloc提供的服务,不要输入任何密码
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
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@
## Your Environment
<!--- Include as many relevant details about the environment you experienced the bug in -->
* Version used:
* Environment name and version (e.g. Python 3.8 with mod_wsgi 4.5.9):
* Environment name and version (e.g. Python 3.9 with mod_wsgi 4.5.9):
* Server type and version:
* Operating System and version:
16 changes: 8 additions & 8 deletions .github/workflows/dockerbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push base image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
file: ./Dockerfile
push: true
Expand All @@ -57,7 +57,7 @@ jobs:
platforms: linux/amd64,linux/arm64

- name: Build and push development image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
file: ./Dockerfile
push: true
Expand All @@ -66,7 +66,7 @@ jobs:
platforms: linux/amd64,linux/arm64

- name: Build and push nginx image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
file: ./Dockerfile
push: true
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push base alpine image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
file: ./Dockerfile-alpine
push: true
Expand All @@ -104,7 +104,7 @@ jobs:
platforms: linux/amd64,linux/arm64

- name: Build and push alpine development image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
file: ./Dockerfile-alpine
push: true
Expand All @@ -113,7 +113,7 @@ jobs:
platforms: linux/amd64,linux/arm64

- name: Build and push alpine based nginx image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
file: ./Dockerfile-alpine
push: true
Expand All @@ -128,9 +128,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Run trivy
uses: aquasecurity/trivy-action@master
uses: aquasecurity/trivy-action@0.29.0
with:
format: 'table'
format: 'sarif'
ignore-unfixed: true
image-ref: ${{ needs.get-version.outputs.version }}
output: 'trivy-results.sarif'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ghpages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ jobs:
run: sphinx-build doc/ docs -D html_context.current_version=${{ github.ref_name }}

- name: Deploy docs to folder `latest` to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4.5.0
uses: JamesIves/github-pages-deploy-action@v4.7.2
with:
folder: docs
target-folder: docs/latest

- name: Deploy docs to a folder named after the new tag to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4.5.0
uses: JamesIves/github-pages-deploy-action@v4.7.2
with:
folder: docs
target-folder: docs/${{ github.ref_name }}
Expand All @@ -43,10 +43,10 @@ jobs:
| sort -V \
| uniq \
| jq -R -s -c 'split("\n")[:-1]' \
> docs/config/versions.json
> config/versions.json

- name: Deploy config folder to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4.5.0
uses: JamesIves/github-pages-deploy-action@v4.7.2
with:
folder: config
target-folder: docs/config
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Cache python deps 💾
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.OS }}-python-${{ hashFiles('**/requirements-tests.txt') }}
Expand Down