Skip to content

Commit 6b8f90b

Browse files
Bump the github-action-dependencies group across 1 directory with 5 updates
Bumps the github-action-dependencies group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/setup-python](https://github.com/actions/setup-python) | `5.3.0` | `5.4.0` | | [crazy-max/ghaction-github-labeler](https://github.com/crazy-max/ghaction-github-labeler) | `5.0.0` | `5.2.0` | | [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) | `1.12.3` | `1.12.4` | | [release-drafter/release-drafter](https://github.com/release-drafter/release-drafter) | `6.0.0` | `6.1.0` | | [SonarSource/sonarcloud-github-action](https://github.com/sonarsource/sonarcloud-github-action) | `3.1.0` | `5.0.0` | Updates `actions/setup-python` from 5.3.0 to 5.4.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5.3.0...v5.4.0) Updates `crazy-max/ghaction-github-labeler` from 5.0.0 to 5.2.0 - [Release notes](https://github.com/crazy-max/ghaction-github-labeler/releases) - [Commits](crazy-max/ghaction-github-labeler@v5.0.0...v5.2.0) Updates `pypa/gh-action-pypi-publish` from 1.12.3 to 1.12.4 - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](pypa/gh-action-pypi-publish@v1.12.3...v1.12.4) Updates `release-drafter/release-drafter` from 6.0.0 to 6.1.0 - [Release notes](https://github.com/release-drafter/release-drafter/releases) - [Commits](release-drafter/release-drafter@v6.0.0...v6.1.0) Updates `SonarSource/sonarcloud-github-action` from 3.1.0 to 5.0.0 - [Release notes](https://github.com/sonarsource/sonarcloud-github-action/releases) - [Commits](SonarSource/sonarcloud-github-action@v3.1.0...v5.0.0) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-action-dependencies - dependency-name: crazy-max/ghaction-github-labeler dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-action-dependencies - dependency-name: pypa/gh-action-pypi-publish dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-action-dependencies - dependency-name: release-drafter/release-drafter dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-action-dependencies - dependency-name: SonarSource/sonarcloud-github-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-action-dependencies ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 68bf37b commit 6b8f90b

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
poetry --version
3636
3737
- name: Set up Python
38-
uses: actions/setup-python@v5.3.0
38+
uses: actions/setup-python@v5.4.0
3939
with:
4040
python-version: "3.12"
4141
cache: "poetry"

.github/workflows/labeler.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ jobs:
2020
uses: actions/checkout@v4
2121

2222
- name: Run Labeler
23-
uses: crazy-max/ghaction-github-labeler@v5.0.0 # Use this version until https://github.com/crazy-max/ghaction-github-labeler/issues/221 is fixed
23+
uses: crazy-max/ghaction-github-labeler@v5.2.0 # Use this version until https://github.com/crazy-max/ghaction-github-labeler/issues/221 is fixed
2424
with:
2525
skip-delete: true

.github/workflows/release.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
fetch-depth: 2
2222

2323
- name: Set up Python
24-
uses: actions/setup-python@v5.3.0
24+
uses: actions/setup-python@v5.4.0
2525
with:
2626
python-version: "3.12"
2727

@@ -62,16 +62,16 @@ jobs:
6262
6363
- name: Publish package on PyPI
6464
if: steps.check-version.outputs.tag
65-
uses: pypa/[email protected].3
65+
uses: pypa/[email protected].4
6666

6767
- name: Publish package on TestPyPI
6868
if: (!steps.check-version.outputs.tag)
69-
uses: pypa/[email protected].3
69+
uses: pypa/[email protected].4
7070
with:
7171
repository-url: https://test.pypi.org/legacy/
7272

7373
- name: Publish the release notes
74-
uses: release-drafter/release-drafter@v6.0.0
74+
uses: release-drafter/release-drafter@v6.1.0
7575
with:
7676
publish: ${{ steps.check-version.outputs.tag != '' }}
7777
tag: ${{ steps.check-version.outputs.tag }}

.github/workflows/tests.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
uses: actions/checkout@v4
3838

3939
- name: Set up Python ${{ matrix.python }}
40-
uses: actions/setup-python@v5.3.0
40+
uses: actions/setup-python@v5.4.0
4141
with:
4242
python-version: ${{ matrix.python }}
4343

@@ -121,7 +121,7 @@ jobs:
121121
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
122122

123123
- name: Set up Python
124-
uses: actions/setup-python@v5.3.0
124+
uses: actions/setup-python@v5.4.0
125125
with:
126126
python-version: "3.10"
127127

@@ -169,4 +169,4 @@ jobs:
169169
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
170170
# No need to run SonarCloud analysis if dependabot update or token not defined
171171
if: env.SONAR_TOKEN != '' && (github.actor != 'dependabot[bot]')
172-
uses: SonarSource/sonarcloud-github-action@v3.1.0
172+
uses: SonarSource/sonarcloud-github-action@v5.0.0

0 commit comments

Comments
 (0)