Skip to content
Closed
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/workflows/autobot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Fetch Dependabot metadata
id: metadata
if: ${{ github.event_name == 'pull_request' && github.actor == 'dependabot[bot]' }}
uses: dependabot/fetch-metadata@d7267f607e9d3fb96fc2fbe83e0af444713e90b7 # v2.3.0
uses: dependabot/fetch-metadata@21025c705c08248db411dc16f3619e6b5f9ea21a # v2.5.0
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/bandit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
actions: read # only on private (maybe?) required to get the Action run status

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Run bandit
uses: VCTLabs/bandit-report-artifacts@b0679c4dff0c2ed69000132fabf6a9e1b7dcfd5c # v0.0.3
uses: VCTLabs/bandit-report-artifacts@edaffcb8ce8618e97d6838d7a0535331927e6d77 # v3
with:
project_path: src
ignore_failure: false
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ jobs:
git config --global core.autocrlf false
git config --global core.eol lf

- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

steps:
- name: Checkout Project
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
# We need to fetch with a depth of 2 for pull_request so we can do HEAD^2
fetch-depth: 2
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
base_cov: ${{ steps.get_base.outputs.base_cov }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
ref: badges
path: badges
Expand Down Expand Up @@ -143,11 +143,11 @@ jobs:
PIP_DOWNLOAD_CACHE: ${{ github.workspace }}/../.pip_download_cache

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: ${{ env.PYTHON }}

Expand All @@ -157,7 +157,7 @@ jobs:
pip install tox

- name: Setup old python for test
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: 3.8

Expand All @@ -173,7 +173,7 @@ jobs:
filename: coverage.xml
output: 'both'

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: src_coverage_rpts
path: |
Expand All @@ -200,7 +200,7 @@ jobs:
output: 'both'

- name: Add Coverage PR Comment
uses: marocchino/sticky-pull-request-comment@52423e01640425a022ef5fd42c6fb5f633a02728 # v2.9.1
uses: marocchino/sticky-pull-request-comment@773744901bac0e8cbb5a0dc842800d45e9b2b405 # v2.9.4
if: github.event_name == 'pull_request' && (github.event.pull_request.author_association == 'MEMBER' || github.actor == github.repository_owner)
with:
header: coverage
Expand Down Expand Up @@ -296,7 +296,7 @@ jobs:
fi

- name: Comment PR with test coverage delta
uses: marocchino/sticky-pull-request-comment@52423e01640425a022ef5fd42c6fb5f633a02728 # v2.9.1
uses: marocchino/sticky-pull-request-comment@773744901bac0e8cbb5a0dc842800d45e9b2b405 # v2.9.4
if: env.HAVE_BASE_COVERAGE == 'true' && (github.event.pull_request.author_association == 'MEMBER' || github.actor == github.repository_owner)
with:
header: delta
Expand Down Expand Up @@ -326,7 +326,7 @@ jobs:
markdown: ${{ steps.url.outputs.markdown }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
ref: badges
path: badges
Expand Down Expand Up @@ -368,7 +368,7 @@ jobs:
git commit -m "Add/Update badge" || true

- name: Push badge commit
uses: ad-m/github-push-action@d91a481090679876dfc4178fef17f286781251df # v0.8.0
uses: ad-m/github-push-action@77c5b412c50b723d2a4fbc6d71fb5723bcd439aa # v1.0.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: badges
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
path: ${{ steps.analyze.outputs.path }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand All @@ -41,7 +41,7 @@ jobs:
echo "branch=${EXPORT_VALUE}" >> $GITHUB_OUTPUT

- name: Set up Python 3.10
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: '3.10'

Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
if: ${{ github.event_name == 'push' }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
ref: badges
path: badges
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
git commit -m "Add/Update badge" || true

- name: Push badge commit
uses: ad-m/github-push-action@d91a481090679876dfc4178fef17f286781251df # v0.8.0
uses: ad-m/github-push-action@77c5b412c50b723d2a4fbc6d71fb5723bcd439aa # v1.0.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: badges
Expand Down
22 changes: 11 additions & 11 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ jobs:
git config --global core.autocrlf false
git config --global core.eol lf

- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -49,7 +49,7 @@ jobs:

- name: Upload artifacts
if: matrix.python-version == 3.9 && runner.os == 'Linux'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: packages
path: dist
Expand All @@ -68,25 +68,25 @@ jobs:
echo "VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
echo ${{ env.VERSION }}

- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0

# download all artifacts to project dir
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8

- name: check artifacts
run: |
ls -l packages/

- name: Generate changes file
uses: sarnold/gitchangelog-action@915234f151ceffb7a8c4f76de77e4ae321087b8f # v1.1.1
uses: sarnold/gitchangelog-action@bc7e885ba8cf71258fca7810835ee72cdde7382c # v1.1.2
with:
github_token: ${{ secrets.GITHUB_TOKEN}}

- name: Create release
id: create_release
uses: softprops/action-gh-release@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda # v2.2.1
uses: softprops/action-gh-release@a06a81a03ee405af7f2048a818ed3f03bbf83c7b # v2.5.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand All @@ -107,11 +107,11 @@ jobs:
contents: write

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: '3.9'

Expand All @@ -125,7 +125,7 @@ jobs:
tox -e ldocs
tox -e docs

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: ApiDocsHTML
path: "docs/_build/html/"
Expand All @@ -136,7 +136,7 @@ jobs:

- name: Deploy docs to gh-pages
if: ${{ github.event_name == 'push' }}
uses: JamesIves/github-pages-deploy-action@6c2d9db40f9296374acc17b90404b6e8864128c8 # v4.7.3
uses: JamesIves/github-pages-deploy-action@d92aa235d04922e8f08b40ce78cc5442fcfbfa2f # v4.8.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/sphinx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
contents: write

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: '3.9'

Expand All @@ -31,7 +31,7 @@ jobs:
#tox -e docs-lint
tox -e docs

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: ApiDocsHTML
path: "docs/_build/html/"
Expand All @@ -42,7 +42,7 @@ jobs:

- name: Deploy docs to gh-pages
if: ${{ github.event_name == 'push' }}
uses: JamesIves/github-pages-deploy-action@6c2d9db40f9296374acc17b90404b6e8864128c8 # v4.7.3
uses: JamesIves/github-pages-deploy-action@d92aa235d04922e8f08b40ce78cc5442fcfbfa2f # v4.8.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ jobs:
git config --global core.autocrlf false
git config --global core.eol lf

- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -51,7 +51,7 @@ jobs:

- name: Upload artifacts
if: matrix.python-version == 3.9 && runner.os == 'Linux'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: wheels
path: ./dist/*.whl
Loading