Skip to content

Commit cceb8f1

Browse files
committed
fix: fix QL analyze script
dependency: none
1 parent edbdc2e commit cceb8f1

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ jobs:
3535

3636
steps:
3737
- name: Checkout repository
38-
uses: actions/checkout@v3
38+
uses: actions/checkout@v4
3939

4040
# Initializes the CodeQL tools for scanning.
4141
- name: Initialize CodeQL
42-
uses: github/codeql-action/init@v2
42+
uses: github/codeql-action/init@v3
4343
with:
4444
languages: ${{ matrix.language }}
4545
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -50,7 +50,7 @@ jobs:
5050
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5151
# If this step fails, then you should remove it and run the build manually (see below)
5252
- name: Autobuild
53-
uses: github/codeql-action/autobuild@v2
53+
uses: github/codeql-action/autobuild@v3
5454

5555
# ℹ️ Command-line programs to run using the OS shell.
5656
# 📚 https://git.io/JvXDl
@@ -64,4 +64,4 @@ jobs:
6464
# make release
6565

6666
- name: Perform CodeQL Analysis
67-
uses: github/codeql-action/analyze@v2
67+
uses: github/codeql-action/analyze@v3

.travis.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ notifications:
99

1010
matrix:
1111
include:
12-
- python: 3.7
12+
- python: 3.9
1313
before_script:
1414
- >-
1515
[ -z "${TRAVIS_TAG}" ] && [ "${TRAVIS_PULL_REQUEST}" == "false" ]
@@ -19,10 +19,11 @@ matrix:
1919
&& openssl aes-256-cbc -K $encrypted_fc092b9428d6_key -iv $encrypted_fc092b9428d6_iv -in cis.env.enc -out cis.env -d || true
2020
&& openssl aes-256-cbc -K $encrypted_89a9eb4f9417_key -iv $encrypted_89a9eb4f9417_iv -in dns.env.enc -out dns.env -d || true
2121
- python: 3.8
22-
- python: 3.9
2322
- python: 3.10
23+
- python: 3.11
2424

2525
before_install:
26+
- curl -fsSL https://www.mongodb.org/static/pgp/server-4.4.asc | sudo apt-key add -
2627
- sudo apt-get update
2728
- sudo apt-get install pandoc
2829
- pip install pypandoc
@@ -47,7 +48,7 @@ deploy:
4748
script: npx semantic-release
4849
skip_cleanup: true
4950
on:
50-
python: '3.7'
51+
python: '3.9'
5152
branch: master
5253
- provider: pypi
5354
setuptools_version: "60.8.2"
@@ -56,5 +57,5 @@ deploy:
5657
repository: https://upload.pypi.org/legacy
5758
skip_cleanup: true
5859
on:
59-
python: '3.7'
60+
python: '3.9'
6061
tags: true

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
requests>=2.24.0,<3.0
1+
requests>=2.30.0,<3.0
22
python_dateutil>=2.5.3,<3.0.0
3-
ibm_cloud_sdk_core>=3.14.0,<4.0.0
3+
ibm_cloud_sdk_core>=3.20.1,<4.0.0

0 commit comments

Comments
 (0)