Skip to content

Commit faf8252

Browse files
Bump the github-action-dependencies group across 1 directory with 4 updates (#265)
Bumps the github-action-dependencies group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/upload-pages-artifact](https://github.com/actions/upload-pages-artifact), [actions/download-artifact](https://github.com/actions/download-artifact) and [SonarSource/sonarqube-scan-action](https://github.com/sonarsource/sonarqube-scan-action). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) Updates `actions/upload-pages-artifact` from 3 to 4 - [Release notes](https://github.com/actions/upload-pages-artifact/releases) - [Commits](actions/upload-pages-artifact@v3...v4) Updates `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v5) Updates `SonarSource/sonarqube-scan-action` from 5.2.0 to 5.3.1 - [Release notes](https://github.com/sonarsource/sonarqube-scan-action/releases) - [Commits](SonarSource/sonarqube-scan-action@v5.2.0...v5.3.1) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-action-dependencies - dependency-name: actions/upload-pages-artifact dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-action-dependencies - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-action-dependencies - dependency-name: SonarSource/sonarqube-scan-action dependency-version: 5.3.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-action-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 93d4fb6 commit faf8252

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727
steps:
2828
- name: Check out the repository
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v5
3030

3131
- name: Install Poetry
3232
run: |
@@ -49,7 +49,7 @@ jobs:
4949
poetry run sphinx-build docs docs/_build
5050
5151
- name: Upload artifact
52-
uses: actions/upload-pages-artifact@v3
52+
uses: actions/upload-pages-artifact@v4
5353
with:
5454
path: "docs/_build"
5555

.github/workflows/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
contents: read
1818
steps:
1919
- name: Check out the repository
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121

2222
- name: Run Labeler
2323
uses: crazy-max/ghaction-github-labeler@v5.3.0

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
pull-requests: read
1717
steps:
1818
- name: Check out the repository
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
with:
2121
fetch-depth: 2
2222

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040

4141
steps:
4242
- name: Check out the repository
43-
uses: actions/checkout@v4
43+
uses: actions/checkout@v5
4444

4545
- name: Set up Python ${{ matrix.python }}
4646
uses: actions/setup-python@v5.6.0
@@ -122,7 +122,7 @@ jobs:
122122
needs: tests
123123
steps:
124124
- name: Check out the repository
125-
uses: actions/checkout@v4
125+
uses: actions/checkout@v5
126126
with:
127127
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
128128

@@ -149,7 +149,7 @@ jobs:
149149
nox --version
150150
151151
- name: Download coverage data
152-
uses: actions/download-artifact@v4
152+
uses: actions/download-artifact@v5
153153
with:
154154
pattern: coverage-data-*
155155
merge-multiple: true
@@ -174,4 +174,4 @@ jobs:
174174
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
175175
# No need to run SonarCloud analysis if dependabot update or token not defined
176176
if: env.SONAR_TOKEN != '' && (github.actor != 'dependabot[bot]')
177-
uses: SonarSource/sonarqube-scan-action@v5.2.0
177+
uses: SonarSource/sonarqube-scan-action@v5.3.1

0 commit comments

Comments
 (0)