File tree Expand file tree Collapse file tree 4 files changed +12
-12
lines changed Expand file tree Collapse file tree 4 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 30
30
persist-credentials : false
31
31
32
32
- name : " Run analysis"
33
- uses : ossf/scorecard-action@62b2cac7ed8198b15735ed49ab1e5cf35480ba46 # v2.4.0
33
+ uses : ossf/scorecard-action@f49aabe0b5af0936a0987cfb85d86b75731b0186 # v2.4.1
34
34
with :
35
35
results_file : results.sarif
36
36
results_format : sarif
@@ -49,14 +49,14 @@ jobs:
49
49
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
50
50
# format to the repository Actions tab.
51
51
- name : " Upload artifact"
52
- uses : actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
52
+ uses : actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
53
53
with :
54
54
name : SARIF file
55
55
path : results.sarif
56
56
retention-days : 5
57
57
58
58
# Upload the results to GitHub's code scanning dashboard.
59
59
- name : " Upload to code-scanning"
60
- uses : github/codeql-action/upload-sarif@9e8d0789d4a0fa9ceb6b1738f7e269594bdd67f0 # v3.28.9
60
+ uses : github/codeql-action/upload-sarif@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d # v3.28.10
61
61
with :
62
62
sarif_file : results.sarif
Original file line number Diff line number Diff line change @@ -53,12 +53,12 @@ jobs:
53
53
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
54
54
- name : Extract metadata (tags, labels) for Docker
55
55
id : meta
56
- uses : docker/metadata-action@369eb591f429131d6889c46b94e711f089e6ca96 # v5.6.1
56
+ uses : docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # v5.7.0
57
57
with :
58
58
images : ghcr.io/${{ github.repository }}
59
59
60
60
- name : Set up Docker Buildx
61
- uses : docker/setup-buildx-action@f7ce87c1d6bead3e36075b2ce75da1f6cc28aaca # v3.9 .0
61
+ uses : docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10 .0
62
62
63
63
- name : Login to GitHub Container Registry
64
64
uses : docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
83
83
sleep 10
84
84
85
85
- name : Build and push
86
- uses : docker/build-push-action@ca877d9245402d1537745e0e356eab47c3520991 # v6.13 .0
86
+ uses : docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15 .0
87
87
with :
88
88
file : Dockerfile
89
89
context : .
Original file line number Diff line number Diff line change 33
33
# https://docs.github.com/en/actions/guides/building-and-testing-python#caching-dependencies
34
34
# ^-- How to set up caching for pip on Ubuntu
35
35
- name : Cache pip
36
- uses : actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
36
+ uses : actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
37
37
with :
38
38
path : ~/.cache/pip
39
39
key : ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
Original file line number Diff line number Diff line change 40
40
with :
41
41
python-version : " 3.10"
42
42
# Cache our pip dir for efficiency; see https://medium.com/ai2-blog/python-caching-in-github-actions-e9452698e98d.
43
- - uses : actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
43
+ - uses : actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
44
44
with :
45
45
path : ~/.cache/pip
46
46
key : ${{ hashFiles('setup.py') }}-${{ hashFiles('pyproject.toml') }}
74
74
with :
75
75
python-version : " 3.10"
76
76
# Cache our pip dir for efficiency; see https://medium.com/ai2-blog/python-caching-in-github-actions-e9452698e98d.
77
- - uses : actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
77
+ - uses : actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
78
78
with :
79
79
path : ~/.cache/pip
80
80
key : ${{ hashFiles('setup.py') }}-${{ hashFiles('pyproject.toml') }}
@@ -97,15 +97,15 @@ jobs:
97
97
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
98
98
- name : Extract metadata (tags, labels) for Docker
99
99
id : meta
100
- uses : docker/metadata-action@369eb591f429131d6889c46b94e711f089e6ca96 # v5.6.1
100
+ uses : docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # v5.7.0
101
101
with :
102
102
images : ghcr.io/${{ github.repository }}
103
103
104
104
- name : Set up Docker Buildx
105
- uses : docker/setup-buildx-action@f7ce87c1d6bead3e36075b2ce75da1f6cc28aaca # v3.9 .0
105
+ uses : docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10 .0
106
106
107
107
- name : Build
108
- uses : docker/build-push-action@ca877d9245402d1537745e0e356eab47c3520991 # v6.13 .0
108
+ uses : docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15 .0
109
109
with :
110
110
file : Dockerfile
111
111
push : false # only build the image, don't push it anywhere
You can’t perform that action at this time.
0 commit comments