File tree Expand file tree Collapse file tree 7 files changed +18
-18
lines changed Expand file tree Collapse file tree 7 files changed +18
-18
lines changed Original file line number Diff line number Diff line change 17
17
steps :
18
18
- name : Set up Python ${{ inputs.python-version }}
19
19
id : setup-python
20
- uses : actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3
20
+ uses : actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b
21
21
with :
22
22
python-version : ${{ inputs.python-version }}
23
23
38
38
39
39
- name : Restore installation
40
40
id : restore
41
- uses : actions/cache/restore@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
41
+ uses : actions/cache/restore@1bd1e32a3bdc45362d1e726936510720a7c30a57
42
42
with :
43
43
path : |
44
44
meltingpot/assets
80
80
81
81
- name : Save installation
82
82
if : steps.restore.outputs.cache-hit != 'true'
83
- uses : actions/cache/save@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
83
+ uses : actions/cache/save@1bd1e32a3bdc45362d1e726936510720a7c30a57
84
84
with :
85
85
path : |
86
86
meltingpot/assets
Original file line number Diff line number Diff line change @@ -28,11 +28,11 @@ jobs:
28
28
29
29
steps :
30
30
- name : Checkout repository
31
- uses : actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
31
+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
32
32
33
33
# Initializes the CodeQL tools for scanning.
34
34
- name : Initialize CodeQL
35
- uses : github/codeql-action/init@e2b3eafc8d227b0241d48be5f425d47c2d750a13
35
+ uses : github/codeql-action/init@babb554ede22fd5605947329c4d04d8e7a0b8155
36
36
with :
37
37
languages : ${{ matrix.language }}
38
38
# If you wish to specify custom queries, you can do so here or in a config file.
46
46
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
47
47
# If this step fails, then you should remove it and run the build manually (see below)
48
48
- name : Autobuild
49
- uses : github/codeql-action/autobuild@e2b3eafc8d227b0241d48be5f425d47c2d750a13
49
+ uses : github/codeql-action/autobuild@babb554ede22fd5605947329c4d04d8e7a0b8155
50
50
51
51
# ℹ️ Command-line programs to run using the OS shell.
52
52
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
59
59
# ./location_of_script_within_repo/buildscript.sh
60
60
61
61
- name : Perform CodeQL Analysis
62
- uses : github/codeql-action/analyze@e2b3eafc8d227b0241d48be5f425d47c2d750a13
62
+ uses : github/codeql-action/analyze@babb554ede22fd5605947329c4d04d8e7a0b8155
Original file line number Diff line number Diff line change 30
30
timeout-minutes : 20
31
31
steps :
32
32
- name : Checkout Melting Pot
33
- uses : actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
33
+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
34
34
- name : Show Python setup
35
35
run : |
36
36
python --version
45
45
done
46
46
ls dist/*
47
47
- name : Save artifact
48
- uses : actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874
48
+ uses : actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882
49
49
with :
50
50
name : dist
51
51
path : ./dist
76
76
name : dist
77
77
path : ./dist
78
78
- name : Set up Python
79
- uses : actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3
79
+ uses : actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b
80
80
with :
81
81
python-version : ${{ matrix.python-version }}
82
82
- name : Install Python dependencies
@@ -111,12 +111,12 @@ jobs:
111
111
path : ./dist
112
112
- name : Publish to TestPyPI
113
113
if : github.event_name == 'release' || inputs.upload_to_test_pypi
114
- uses : pypa/gh-action-pypi-publish@897895f1e160c830e369f9779632ebc134688e1b
114
+ uses : pypa/gh-action-pypi-publish@67339c736fd9354cd4f8cb0b744f2b82a74b5c70
115
115
with :
116
116
repository-url : https://test.pypi.org/legacy/
117
117
verbose : true
118
118
- name : Publish to PyPI
119
119
if : github.event_name == 'release' || inputs.upload_to_pypi
120
- uses : pypa/gh-action-pypi-publish@897895f1e160c830e369f9779632ebc134688e1b
120
+ uses : pypa/gh-action-pypi-publish@67339c736fd9354cd4f8cb0b744f2b82a74b5c70
121
121
with :
122
122
verbose : true
Original file line number Diff line number Diff line change 50
50
51
51
steps :
52
52
- name : Set up Python ${{ matrix.python_version }}
53
- uses : actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3
53
+ uses : actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b
54
54
with :
55
55
python-version : ${{ matrix.python-version }}
56
56
Original file line number Diff line number Diff line change 25
25
26
26
steps :
27
27
- name : " Checkout code"
28
- uses : actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
28
+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
29
29
with :
30
30
persist-credentials : false
31
31
@@ -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@50769540e7f4bd5e21e526ee35c689e35e0d6874
52
+ uses : actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882
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@e2b3eafc8d227b0241d48be5f425d47c2d750a13
60
+ uses : github/codeql-action/upload-sarif@babb554ede22fd5605947329c4d04d8e7a0b8155
61
61
with :
62
62
sarif_file : results.sarif
Original file line number Diff line number Diff line change 40
40
timeout-minutes : 90
41
41
steps :
42
42
- name : Checkout Melting Pot
43
- uses : actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
43
+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
44
44
45
45
- name : Install Melting Pot
46
46
uses : ./.github/actions/install
Original file line number Diff line number Diff line change 37
37
runs-on : ubuntu-latest
38
38
steps :
39
39
- name : Checkout Melting Pot
40
- uses : actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
40
+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
41
41
42
42
- name : Install Melting Pot
43
43
uses : ./.github/actions/install
You can’t perform that action at this time.
0 commit comments