Skip to content

Commit aacb9c0

Browse files
Chore(deps): update GitHub Actions
Bumps the github-actions group with 7 updates: | Package | From | To | | --- | --- | --- | | [actions/setup-python](https://github.com/actions/setup-python) | `5` | `6` | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `8` | | [SonarSource/sonarqube-scan-action](https://github.com/sonarsource/sonarqube-scan-action) | `7` | `8` | | [actions/github-script](https://github.com/actions/github-script) | `7` | `9` | | [softprops/action-gh-release](https://github.com/softprops/action-gh-release) | `2` | `3` | Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v7) Updates `actions/download-artifact` from 4 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v8) Updates `SonarSource/sonarqube-scan-action` from 7 to 8 - [Release notes](https://github.com/sonarsource/sonarqube-scan-action/releases) - [Commits](SonarSource/sonarqube-scan-action@v7...v8) Updates `actions/github-script` from 7 to 9 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v7...v9) Updates `softprops/action-gh-release` from 2 to 3 - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](softprops/action-gh-release@v2...v3) --- updated-dependencies: - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: SonarSource/sonarqube-scan-action dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/github-script dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: softprops/action-gh-release dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent f0e3696 commit aacb9c0

3 files changed

Lines changed: 16 additions & 16 deletions

File tree

.github/workflows/manual_verify_install.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
python-version: ["3.13"]
2020
steps:
2121
- name: Set up Python ${{ matrix.python-version }}
22-
uses: actions/setup-python@v5
22+
uses: actions/setup-python@v6
2323
with:
2424
python-version: ${{ matrix.python-version }}
2525

.github/workflows/python-app.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
permissions:
1717
contents: read
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v6
2020
- name: Set up Python 3.13
21-
uses: actions/setup-python@v5
21+
uses: actions/setup-python@v6
2222
with:
2323
python-version: "3.13"
2424
cache: 'pip'
@@ -45,9 +45,9 @@ jobs:
4545
os: [ubuntu-latest, macos-latest, windows-latest]
4646
python-version: ["3.13"]
4747
steps:
48-
- uses: actions/checkout@v4
48+
- uses: actions/checkout@v6
4949
- name: Set up Python ${{ matrix.python-version }}
50-
uses: actions/setup-python@v5
50+
uses: actions/setup-python@v6
5151
with:
5252
python-version: ${{ matrix.python-version }}
5353
cache: 'pip'
@@ -63,7 +63,7 @@ jobs:
6363
run: |
6464
pytest --junitxml=test-results-${{ matrix.os }}-${{ matrix.python-version }}.xml --cov=src --cov-report=xml
6565
- name: Upload Test Results
66-
uses: actions/upload-artifact@v4
66+
uses: actions/upload-artifact@v7
6767
with:
6868
name: test-results-${{ matrix.os }}-${{ matrix.python-version }}
6969
path: |
@@ -76,15 +76,15 @@ jobs:
7676
runs-on: ubuntu-latest
7777
if: github.event_name == 'pull_request' || github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main'
7878
steps:
79-
- uses: actions/checkout@v4
79+
- uses: actions/checkout@v6
8080
with:
8181
fetch-depth: 0
8282
- name: Download coverage report
83-
uses: actions/download-artifact@v4
83+
uses: actions/download-artifact@v8
8484
with:
8585
name: test-results-ubuntu-latest-3.13
8686
- name: SonarCloud Scan
87-
uses: SonarSource/sonarqube-scan-action@v7
87+
uses: SonarSource/sonarqube-scan-action@v8
8888
env:
8989
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9090
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
@@ -98,10 +98,10 @@ jobs:
9898
pull-requests: write
9999
issues: write
100100
steps:
101-
- uses: actions/checkout@v4
101+
- uses: actions/checkout@v6
102102

103103
- name: Set up Python 3.13
104-
uses: actions/setup-python@v5
104+
uses: actions/setup-python@v6
105105
with:
106106
python-version: "3.13"
107107

@@ -115,7 +115,7 @@ jobs:
115115
run: python scripts/benchmark_filters.py
116116

117117
- name: Download Test Results
118-
uses: actions/download-artifact@v4
118+
uses: actions/download-artifact@v8
119119
with:
120120
pattern: test-results-*
121121
path: test-results
@@ -128,7 +128,7 @@ jobs:
128128
GITHUB_RUN_ID: ${{ github.run_id }}
129129

130130
- name: Post PR Comment
131-
uses: actions/github-script@v7
131+
uses: actions/github-script@v9
132132
with:
133133
script: |
134134
const fs = require('fs');

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
runs-on: ubuntu-latest
1414
if: github.repository == 'jmrplens/PyOctaveBand'
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v6
1717
with:
1818
fetch-depth: 0
1919

2020
- name: Set up Python
21-
uses: actions/setup-python@v5
21+
uses: actions/setup-python@v6
2222
with:
2323
python-version: "3.13"
2424

@@ -70,7 +70,7 @@ jobs:
7070
run: python -m twine upload dist/*
7171

7272
- name: Create GitHub Release
73-
uses: softprops/action-gh-release@v2
73+
uses: softprops/action-gh-release@v3
7474
with:
7575
tag_name: ${{ steps.version.outputs.tag }}
7676
name: Release ${{ steps.version.outputs.tag }}

0 commit comments

Comments
 (0)