diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 36e8b1809..01f127a77 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -32,6 +32,6 @@ ## Your Environment * 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: diff --git a/.github/workflows/dockerbuild.yml b/.github/workflows/dockerbuild.yml index 4522b4790..2b5c59d8a 100644 --- a/.github/workflows/dockerbuild.yml +++ b/.github/workflows/dockerbuild.yml @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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' diff --git a/.github/workflows/ghpages.yml b/.github/workflows/ghpages.yml index fe143aaa1..a7a59e828 100644 --- a/.github/workflows/ghpages.yml +++ b/.github/workflows/ghpages.yml @@ -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 }} @@ -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 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3c7ded082..8d07b4a7f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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') }}