Skip to content
Open
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/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,17 +52,17 @@
fetch-depth: 0

- name: Set up Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.11"
cache: "pip"
cache-dependency-path: pyproject.toml

- name: Install dependencies
run: python -m pip install --upgrade pip setuptools wheel

Check warning on line 62 in .github/workflows/documentation.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Using dependencies without locking resolved versions is security-sensitive.

See more on https://sonarcloud.io/project/issues?id=Guts_mkdocs-rss-plugin&issues=AZ--fiFGIX0RaJsEjBew&open=AZ--fiFGIX0RaJsEjBew&pullRequest=452

- name: Install project as a package
run: python -m pip install .[docs]

Check warning on line 65 in .github/workflows/documentation.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Using dependencies without locking resolved versions is security-sensitive.

See more on https://sonarcloud.io/project/issues?id=Guts_mkdocs-rss-plugin&issues=AZ--fiFGIX0RaJsEjBex&open=AZ--fiFGIX0RaJsEjBex&pullRequest=452

- name: Build static website
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-and-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,17 @@
uses: actions/checkout@v7

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
cache-dependency-path: pyproject.toml

- name: Upgrade installation dependencies
run: python -m pip install --upgrade pip setuptools wheel

Check warning on line 48 in .github/workflows/lint-and-tests.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Using dependencies without locking resolved versions is security-sensitive.

See more on https://sonarcloud.io/project/issues?id=Guts_mkdocs-rss-plugin&issues=AZ--fiFaIX0RaJsEjBey&open=AZ--fiFaIX0RaJsEjBey&pullRequest=452

- name: Install project as a package
run: python -m pip install .[test]

Check warning on line 51 in .github/workflows/lint-and-tests.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Using dependencies without locking resolved versions is security-sensitive.

See more on https://sonarcloud.io/project/issues?id=Guts_mkdocs-rss-plugin&issues=AZ--fiFaIX0RaJsEjBez&open=AZ--fiFaIX0RaJsEjBez&pullRequest=452

- name: Run Unit tests
run: python -m pytest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
- uses: actions/checkout@v7

- name: Set up Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.13"
cache: "pip"
Expand All @@ -31,8 +31,8 @@

- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel

Check warning on line 34 in .github/workflows/release.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Using dependencies without locking resolved versions is security-sensitive.

See more on https://sonarcloud.io/project/issues?id=Guts_mkdocs-rss-plugin&issues=AZ--fiC5IX0RaJsEjBeu&open=AZ--fiC5IX0RaJsEjBeu&pullRequest=452
python -m pip install --upgrade build

Check warning on line 35 in .github/workflows/release.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Using dependencies without locking resolved versions is security-sensitive.

See more on https://sonarcloud.io/project/issues?id=Guts_mkdocs-rss-plugin&issues=AZ--fiC5IX0RaJsEjBev&open=AZ--fiC5IX0RaJsEjBev&pullRequest=452

- name: Build a binary wheel and a source tarball
run: >-
Expand Down