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
6 changes: 3 additions & 3 deletions .github/workflows/build-and-upload.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

- name: Check for Changed Files
id: changed-files
uses: tj-actions/changed-files@635f118699dd888d737c15018cd30aff2e0274f8
uses: tj-actions/changed-files@4edd678ac3f81e2dc578756871e4d00c19191daf
with:
files: |
annotated_logger
Expand All @@ -29,7 +29,7 @@ jobs:

- name: Log into registry
if: steps.changed-files.outputs.any_changed == 'true'
uses: docker/login-action@0d4c9c5ea7693da7b068278f7b52bda2a190a446
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567
with:
registry: ghcr.io
username: ${{ secrets.GHCR_USER }}
Expand All @@ -40,7 +40,7 @@ jobs:
if: steps.changed-files.outputs.any_changed == 'true'

- name: Setup Octofactory config
uses: jfrog/setup-jfrog-cli@7c95feb32008765e1b4e626b078dfd897c4340ad
uses: jfrog/setup-jfrog-cli@e7cc33a01bc1b1df406bac8a1c4a409a34bdca0a
if: steps.changed-files.outputs.any_changed == 'true'
env:
JF_ENV_1: ${{ secrets.OCTOFACTORY_SERVER_CONFIG }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mutation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
hatch run dev:mutmut results
hatch run dev:mutmut junitxml > junit.xml
- name: Parse Results
uses: mikepenz/action-junit-report@v4
uses: mikepenz/action-junit-report@v5
if: always()
with:
report_paths: junit.xml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/package-quality-control.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
uses: actions/setup-python@v5
- name: Check for Changed Files
id: changed-files
uses: tj-actions/changed-files@v44
uses: tj-actions/changed-files@v45
with:
files: |
pyproject.toml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pyright.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ jobs:
hatch env create dev
- run: echo "$(hatch env find dev)/bin" >> $GITHUB_PATH
- name: Run pyright
uses: jakebailey/[email protected].1
uses: jakebailey/[email protected].2
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
echo "[run]" >> .coveragerc
echo "relative_files = true" >> .coveragerc
- name: Python Coverage Comment
uses: py-cov-action/python-coverage-comment-action@v3.24
uses: py-cov-action/python-coverage-comment-action@v3.29
with:
GITHUB_TOKEN: ${{ github.token }}
MERGE_COVERAGE_FILES: true
Loading