File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -37,20 +37,20 @@ jobs:
37
37
runs-on : ubuntu-latest
38
38
steps :
39
39
- name : Checkout the code
40
- uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
40
+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
41
41
- name : Build the Docker image
42
42
run : docker pull python:3-alpine; docker build . --file scripts/Docker/Dockerfile --tag localbuild/testimage:latest
43
43
- name : List the Docker image
44
44
run : docker image ls
45
45
- name : Run the Anchore scan action itself with GitHub Advanced Security code scanning integration enabled
46
- uses : anchore/scan-action@c35e932c2a7c572bfdb1c3dbcdadb2d4fc62418d # 3.6.1
46
+ uses : anchore/scan-action@be7a22da4f22dde446c4c4c099887ff5b256526c # 6.3.0
47
47
id : scan
48
48
with :
49
49
image : " localbuild/testimage:latest"
50
50
fail-build : true
51
51
- name : Upload Anchore Scan Report
52
52
if : always()
53
- uses : github/codeql-action/upload-sarif@65c74964a9ed8c44ed9f19d4bbc5757a6a8e9ab9 # v2.16.1
53
+ uses : github/codeql-action/upload-sarif@b1e4dc3db58c9601794e22a9f6d28d45461b9dbf # v2.22.0
54
54
with :
55
55
sarif_file : ${{ steps.scan.outputs.sarif }}
56
56
- name : Inspect action SARIF report
Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ jobs:
133
133
- name : Display Python and key module versions
134
134
run : |
135
135
python --version --version
136
- python -c "import sysconfig; print('GIL IS ENABLED : ', sysconfig.get_config_vars().get('Py_GIL_DISABLED', 'not defined'));"
136
+ python -c "import sysconfig; print('GIL IS DISABLED : ', sysconfig.get_config_vars().get('Py_GIL_DISABLED', 'not defined'));"
137
137
python -c "import sqlite3; print('sqlite version: ', sqlite3.sqlite_version)"
138
138
python -c "import setuptools; print('setuptools version: ', setuptools.__version__);"
139
139
Original file line number Diff line number Diff line change @@ -49,11 +49,11 @@ jobs:
49
49
50
50
steps :
51
51
- name : Checkout repository
52
- uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
52
+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
53
53
54
54
# Initializes the CodeQL tools for scanning.
55
55
- name : Initialize CodeQL
56
- uses : github/codeql-action/init@65c74964a9ed8c44ed9f19d4bbc5757a6a8e9ab9 # v2.16.1
56
+ uses : github/codeql-action/init@b1e4dc3db58c9601794e22a9f6d28d45461b9dbf # v2.22.0
57
57
with :
58
58
languages : ${{ matrix.language }}
59
59
# If you wish to specify custom queries, you can do so here or in a config file.
64
64
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
65
65
# If this step fails, then you should remove it and run the build manually (see below)
66
66
- name : Autobuild
67
- uses : github/codeql-action/autobuild@65c74964a9ed8c44ed9f19d4bbc5757a6a8e9ab9 # v2.16.1
67
+ uses : github/codeql-action/autobuild@b1e4dc3db58c9601794e22a9f6d28d45461b9dbf # v2.22.0
68
68
69
69
# ℹ️ Command-line programs to run using the OS shell.
70
70
# 📚 https://git.io/JvXDl
78
78
# make release
79
79
80
80
- name : Perform CodeQL Analysis
81
- uses : github/codeql-action/analyze@65c74964a9ed8c44ed9f19d4bbc5757a6a8e9ab9 # v2.16.1
81
+ uses : github/codeql-action/analyze@b1e4dc3db58c9601794e22a9f6d28d45461b9dbf # v2.22.0
You can’t perform that action at this time.
0 commit comments