Skip to content

Commit 742807d

Browse files
Bump the github-actions group across 1 directory with 4 updates
Bumps the github-actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/setup-python](https://github.com/actions/setup-python), [actions/cache](https://github.com/actions/cache) and [SonarSource/sonarqube-scan-action](https://github.com/sonarsource/sonarqube-scan-action). Updates `actions/checkout` from 6 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v6...v7) Updates `actions/setup-python` from 6 to 7 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v6...v7) Updates `actions/cache` from 5 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v5...v6) 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) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-python dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: '6' 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 ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 49697f8 commit 742807d

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/branch-cicd.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,19 +37,19 @@ jobs:
3737
steps:
3838
-
3939
name: 💳 Checkout
40-
uses: actions/checkout@v6
40+
uses: actions/checkout@v7
4141
with:
4242
lfs: true
4343
fetch-depth: 0
4444
token: ${{secrets.ADMIN_GITHUB_TOKEN}}
4545
-
4646
name: Set up Python ${{ matrix.python-version }}
47-
uses: actions/setup-python@v6
47+
uses: actions/setup-python@v7
4848
with:
4949
python-version: ${{ matrix.python-version }}
5050
-
5151
name: 💵 Python Cache
52-
uses: actions/cache@v5
52+
uses: actions/cache@v6
5353
with:
5454
path: ~/.cache/pip
5555
# The "key" used to indicate a set of cached files is the operating system runner

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ jobs:
3939

4040
steps:
4141
- name: Checkout repository
42-
uses: actions/checkout@v6
42+
uses: actions/checkout@v7
4343

4444
- name: Setup python 3.13
45-
uses: actions/setup-python@v6
45+
uses: actions/setup-python@v7
4646
with:
4747
python-version: 3.13
4848

.github/workflows/stable-cicd.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,14 @@ jobs:
4848
steps:
4949
-
5050
name: 💳 Checkout
51-
uses: actions/checkout@v6
51+
uses: actions/checkout@v7
5252
with:
5353
lfs: true
5454
token: ${{secrets.ADMIN_GITHUB_TOKEN}}
5555
fetch-depth: 0
5656
-
5757
name: 💵 Python Cache
58-
uses: actions/cache@v5
58+
uses: actions/cache@v6
5959
with:
6060
path: ~/.cache/pip
6161
# The "key" used to indicate a set of cached files is the operating system runner

.github/workflows/unstable-cicd.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,14 @@ jobs:
5151
steps:
5252
-
5353
name: 💳 Checkout
54-
uses: actions/checkout@v6
54+
uses: actions/checkout@v7
5555
with:
5656
lfs: true
5757
fetch-depth: 0
5858
token: ${{secrets.ADMIN_GITHUB_TOKEN}}
5959
-
6060
name: 💵 Python Cache
61-
uses: actions/cache@v5
61+
uses: actions/cache@v6
6262
with:
6363
path: ~/.cache/pip
6464
# The "key" used to indicate a set of cached files is the operating system runner
@@ -81,7 +81,7 @@ jobs:
8181
DATACITE_PASSWORD: ${{secrets.DATACITE_PASSWORD}}
8282
-
8383
name: 🛏️ Upload Coverage
84-
uses: SonarSource/sonarqube-scan-action@v7
84+
uses: SonarSource/sonarqube-scan-action@v8
8585
env:
8686
SONAR_TOKEN: ${{secrets.SONAR_TOKEN}}
8787

0 commit comments

Comments
 (0)