Skip to content

Commit 65ebd4f

Browse files
Bump the actions group with 3 updates (#1092)
Bumps the actions group with 3 updates: [github/codeql-action](https://github.com/github/codeql-action), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `github/codeql-action` from 4.30.9 to 4.31.0 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@16140ae...4e94bd1) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) --- updated-dependencies: - dependency-name: github/codeql-action dependency-version: 4.31.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent bf4bf41 commit 65ebd4f

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/codeql-actions.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ jobs:
3737

3838
# Initializes the CodeQL tools for scanning.
3939
- name: Initialize CodeQL
40-
uses: github/codeql-action/init@16140ae1a102900babc80a33c44059580f687047 # v4
40+
uses: github/codeql-action/init@4e94bd11f71e507f7f87df81788dff88d1dacbfb # v4
4141
with:
4242
languages: actions
4343
build-mode: none
4444
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
4545
queries: security-extended
4646

4747
- name: Perform CodeQL Analysis
48-
uses: github/codeql-action/analyze@16140ae1a102900babc80a33c44059580f687047 # v4
48+
uses: github/codeql-action/analyze@4e94bd11f71e507f7f87df81788dff88d1dacbfb # v4
4949
with:
5050
category: "/language:actions"

.github/workflows/codeql-python.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL
45-
uses: github/codeql-action/init@16140ae1a102900babc80a33c44059580f687047 # v4
45+
uses: github/codeql-action/init@4e94bd11f71e507f7f87df81788dff88d1dacbfb # v4
4646
with:
4747
languages: python
4848
build-mode: none
@@ -61,6 +61,6 @@ jobs:
6161
pip install dist/*.whl
6262
6363
- name: Perform CodeQL Analysis
64-
uses: github/codeql-action/analyze@16140ae1a102900babc80a33c44059580f687047 # v4
64+
uses: github/codeql-action/analyze@4e94bd11f71e507f7f87df81788dff88d1dacbfb # v4
6565
with:
6666
category: "/language:python"

.github/workflows/dist-python.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
git fetch origin $LIBMONGOCRYPT_VERSION
5959
bash ./scripts/release.sh
6060
61-
- uses: actions/upload-artifact@v4
61+
- uses: actions/upload-artifact@v5
6262
with:
6363
name: dist-${{ matrix.os }}
6464
path: ./bindings/python/dist/*.*
@@ -70,13 +70,13 @@ jobs:
7070
name: Collect dist files
7171
steps:
7272
- name: Download all workflow run artifacts
73-
uses: actions/download-artifact@v5
73+
uses: actions/download-artifact@v6
7474
- name: Flatten directory
7575
working-directory: .
7676
run: |
7777
find . -mindepth 2 -type f -exec mv {} . \;
7878
find . -type d -empty -delete
79-
- uses: actions/upload-artifact@v4
79+
- uses: actions/upload-artifact@v5
8080
with:
8181
name: all-dist-${{ github.run_id }}
8282
path: "./*"

.github/workflows/release-python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
id-token: write
8282
steps:
8383
- name: Download all the dists
84-
uses: actions/download-artifact@v5
84+
uses: actions/download-artifact@v6
8585
with:
8686
name: all-dist-${{ github.run_id }}
8787
path: dist/

0 commit comments

Comments
 (0)