Skip to content

Commit c6a2d59

Browse files
Bump the github-actions group across 1 directory with 5 updates
Bumps the github-actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `6` | `7` | | [actions/setup-python](https://github.com/actions/setup-python) | `6` | `7` | | [actions/cache](https://github.com/actions/cache) | `5` | `6` | | [github/codeql-action](https://github.com/github/codeql-action) | `4` | `4.37.3` | | [SonarSource/sonarqube-scan-action](https://github.com/sonarsource/sonarqube-scan-action) | `7` | `8` | 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 `github/codeql-action` from 4 to 4.37.3 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@v4...v4.37.3) 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: github/codeql-action dependency-version: 4.37.3 dependency-type: direct:production update-type: version-update:semver-minor 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 c6a2d59

4 files changed

Lines changed: 13 additions & 13 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: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,16 +39,16 @@ 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

4949
# Initializes the CodeQL tools for scanning.
5050
- name: Initialize CodeQL
51-
uses: github/codeql-action/init@v4
51+
uses: github/codeql-action/init@v4.37.3
5252
with:
5353
languages: ${{ matrix.language }}
5454
queries: security-and-quality, security-extended
@@ -60,7 +60,7 @@ jobs:
6060
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
6161
# If this step fails, then you should remove it and run the build manually (see below)
6262
- name: Autobuild
63-
uses: github/codeql-action/autobuild@v4
63+
uses: github/codeql-action/autobuild@v4.37.3
6464

6565
# ℹ️ Command-line programs to run using the OS shell.
6666
# 📚 https://git.io/JvXDl
@@ -74,7 +74,7 @@ jobs:
7474
# make release
7575

7676
- name: Perform CodeQL Analysis
77-
uses: github/codeql-action/analyze@v4
77+
uses: github/codeql-action/analyze@v4.37.3
7878

7979
- run: |
8080
pip3 install nasa-scrub

.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)