Skip to content

Commit 05be5f2

Browse files
[GHA] Bump actions (#3284)
### Changes - actions/checkout@v4.2.2 - actions/setup-python@v5.4.0 - github/codeql-action@v3.24.5 - actions/upload-artifact@v4.5.0 - ilammy/msvc-dev-cmd@v1.13.0 - dawidd6/action-download-artifact@v8 - JamesIves/github-pages-deploy-action@v4.7.2 ### Reason for changes Prepare to allow dependabot to update dependencies in NNCF
1 parent cc7f67a commit 05be5f2

17 files changed

+75
-75
lines changed

.github/workflows/api_changes_check.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
rm artifact.tar
3535
shell: 'bash'
3636
- name: Checkout latest doc_pages branch tip
37-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
37+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3838
with:
3939
ref: doc_pages
4040
path: previous_doc_state
@@ -63,7 +63,7 @@ jobs:
6363
echo '{"pr_number": "${{ github.event.pull_request.number }}", "action": "none"}' > api_status.json
6464
6565
- name: Upload artifact
66-
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b #v4.5.0
66+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 #v4.6.0
6767
with:
6868
name: api_status
6969
path: api_status.json

.github/workflows/api_set_label.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
steps:
1818
- name: Download artifact
1919
id: download-artifact
20-
uses: dawidd6/action-download-artifact@bf251b5aa9c2f7eeb574a96ee720e24f801b7c11 # v6
20+
uses: dawidd6/action-download-artifact@20319c5641d495c8a52e688b7dc5fada6c3a9fbc # v8
2121
with:
2222
run_id: ${{ github.event.workflow_run.id }}
2323
name: api_status

.github/workflows/build_and_publish_doc.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ubuntu-latest
2626
steps:
2727
- name: Checkout main repo # the github-pages-deploy-action seems to require this step
28-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
28+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2929

3030
- name: Download HTML doc build artifact
3131
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
@@ -50,7 +50,7 @@ jobs:
5050
rm artifact.tar
5151
5252
- name: Publish built docs on Github Pages branch ${{ env.GH_PAGES_BRANCH }}
53-
uses: JamesIves/github-pages-deploy-action@5c6e9e9f3672ce8fd37b9856193d2a537941e66c # v4.6.1
53+
uses: JamesIves/github-pages-deploy-action@15de0f09300eea763baee31dff6c6184995c5f6a # v4.7.2
5454
with:
5555
folder: html_build/html
5656
token: ${{ secrets.PUSH_TO_GH_PAGES_BRANCH }}

.github/workflows/build_html_doc.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
16+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1717
with:
1818
ref: ${{ inputs.ref }}
19-
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
19+
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
2020
with:
2121
python-version: 3.10.14
2222
- name: Install NNCF and doc requirements
@@ -29,7 +29,7 @@ jobs:
2929
- name: Archive built HTMLs
3030
shell: bash
3131
run: tar -czf artifact.tar html_build/html
32-
- uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b #v4.5.0
32+
- uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 #v4.6.0
3333
with:
3434
name: html_doc_artifact
3535
path: artifact.tar

.github/workflows/build_schema_page.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
12+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1313

14-
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
14+
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
1515
with:
1616
python-version: 3.10.14
1717

@@ -31,7 +31,7 @@ jobs:
3131
run: tar -czf artifact.tar schema
3232

3333
- name: Upload result as artifact
34-
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b #v4.5.0
34+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 #v4.6.0
3535
with:
3636
name: schema_doc_artifact
3737
path: artifact.tar

.github/workflows/call_precommit.yml

+16-16
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ jobs:
2727
run:
2828
shell: bash
2929
steps:
30-
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
30+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3131
with:
3232
lfs: true
33-
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
33+
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
3434
with:
3535
python-version: ${{ inputs.python_version }}
3636
- name: Override constraints
@@ -53,10 +53,10 @@ jobs:
5353
run:
5454
shell: bash
5555
steps:
56-
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
56+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
5757
with:
5858
lfs: true
59-
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
59+
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
6060
with:
6161
python-version: ${{ inputs.python_version }}
6262
- name: Override constraints
@@ -79,10 +79,10 @@ jobs:
7979
run:
8080
shell: bash
8181
steps:
82-
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
82+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
8383
with:
8484
lfs: true
85-
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
85+
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
8686
with:
8787
python-version: ${{ inputs.python_version }}
8888
- name: Override constraints
@@ -111,10 +111,10 @@ jobs:
111111
run : |
112112
sudo apt-get update
113113
sudo apt-get --assume-yes install gcc g++ build-essential ninja-build libgl1-mesa-dev libglib2.0-0
114-
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
114+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
115115
with:
116116
lfs: true
117-
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
117+
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
118118
with:
119119
python-version: ${{ inputs.python_version }}
120120
- name: Runner info
@@ -162,10 +162,10 @@ jobs:
162162
nvidia-smi
163163
cat /proc/cpuinfo
164164
nvcc --version
165-
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
165+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
166166
with:
167167
lfs: true
168-
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
168+
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
169169
with:
170170
python-version: ${{ inputs.python_version }}
171171
- name: Override constraints
@@ -195,10 +195,10 @@ jobs:
195195
env:
196196
DEBIAN_FRONTEND: noninteractive
197197
steps:
198-
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
198+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
199199
with:
200200
lfs: true
201-
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
201+
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
202202
with:
203203
python-version: ${{ inputs.python_version }}
204204
- name: Override constraints
@@ -221,10 +221,10 @@ jobs:
221221
run:
222222
shell: bash
223223
steps:
224-
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
224+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
225225
with:
226226
lfs: true
227-
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
227+
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
228228
with:
229229
python-version: ${{ inputs.python_version }}
230230
- name: Install test requirements
@@ -241,10 +241,10 @@ jobs:
241241
run:
242242
shell: bash
243243
steps:
244-
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
244+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
245245
with:
246246
lfs: true
247-
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
247+
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
248248
with:
249249
python-version: ${{ inputs.python_version }}
250250
- name: Override constraints

.github/workflows/call_precommit_windows.yml

+14-14
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222
run:
2323
shell: bash
2424
steps:
25-
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
25+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2626
with:
2727
lfs: true
28-
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
28+
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
2929
with:
3030
python-version: ${{ inputs.python_version }}
3131
- name: Override constraints
@@ -48,10 +48,10 @@ jobs:
4848
run:
4949
shell: bash
5050
steps:
51-
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
51+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
5252
with:
5353
lfs: true
54-
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
54+
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
5555
with:
5656
python-version: ${{ inputs.python_version }}
5757
- name: Override constraints
@@ -74,10 +74,10 @@ jobs:
7474
run:
7575
shell: bash
7676
steps:
77-
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
77+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
7878
with:
7979
lfs: true
80-
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
80+
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
8181
with:
8282
python-version: ${{ inputs.python_version }}
8383
- name: Override constraints
@@ -102,13 +102,13 @@ jobs:
102102
env:
103103
DEBIAN_FRONTEND: noninteractive
104104
steps:
105-
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
105+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
106106
with:
107107
lfs: true
108-
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
108+
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
109109
with:
110110
python-version: ${{ inputs.python_version }}
111-
- uses: ilammy/msvc-dev-cmd@ed94116c4d30d2091601b81f339a2eaa1c2ba0a6 # v1.4.1
111+
- uses: ilammy/msvc-dev-cmd@0b201ec74fa43914dc39ae48a89fd1d8cb592756 # v1.13.0
112112
- name: Override constraints
113113
if: ${{ inputs.override_requirements != '' }}
114114
run: python .github/scripts/override_constraints.py "${{ inputs.override_requirements }}"
@@ -137,10 +137,10 @@ jobs:
137137
env:
138138
DEBIAN_FRONTEND: noninteractive
139139
steps:
140-
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
140+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
141141
with:
142142
lfs: true
143-
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
143+
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
144144
with:
145145
python-version: ${{ inputs.python_version }}
146146
- name: Override constraints
@@ -163,13 +163,13 @@ jobs:
163163
run:
164164
shell: bash
165165
steps:
166-
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
166+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
167167
with:
168168
lfs: true
169-
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
169+
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
170170
with:
171171
python-version: ${{ inputs.python_version }}
172-
- uses: ilammy/msvc-dev-cmd@ed94116c4d30d2091601b81f339a2eaa1c2ba0a6 # v1.4.1
172+
- uses: ilammy/msvc-dev-cmd@0b201ec74fa43914dc39ae48a89fd1d8cb592756 # v1.13.0
173173
- name: Override constraints
174174
if: ${{ inputs.override_requirements != '' }}
175175
run: python .github/scripts/override_constraints.py "${{ inputs.override_requirements }}"

.github/workflows/conformance_weight_compression.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
run:
2626
shell: bash
2727
steps:
28-
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
28+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2929
with:
3030
lfs: true
3131
fetch-depth: 0 # Fetch full history to allow checking out any branch or PR
@@ -34,7 +34,7 @@ jobs:
3434
run: |
3535
git fetch origin pull/${{ github.event.inputs.pull_request_number }}/head:pr-${{ github.event.inputs.pull_request_number }}
3636
git checkout pr-${{ github.event.inputs.pull_request_number }}
37-
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
37+
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
3838
with:
3939
python-version: 3.10.14
4040
- name: cpuinfo
@@ -62,7 +62,7 @@ jobs:
6262
run: column -s, -t < tmp/results.csv || echo "no file"
6363
- name: Upload artifact
6464
if: ${{ !cancelled() }}
65-
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b #v4.5.0
65+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 #v4.6.0
6666
with:
6767
name: wc_results_${{ matrix.group }}
6868
path: tmp/results.csv

.github/workflows/examples.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
run:
3333
shell: bash
3434
steps:
35-
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
35+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3636
with:
3737
lfs: true
3838
fetch-depth: 0 # Fetch full history to allow checking out any branch or PR
@@ -41,7 +41,7 @@ jobs:
4141
run: |
4242
git fetch origin pull/${{ github.event.inputs.pull_request_number }}/head:pr-${{ github.event.inputs.pull_request_number }}
4343
git checkout pr-${{ github.event.inputs.pull_request_number }}
44-
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
44+
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
4545
with:
4646
python-version: 3.10.14
4747
- name: cpuinfo
@@ -83,7 +83,7 @@ jobs:
8383
run:
8484
shell: bash
8585
steps:
86-
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
86+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
8787
with:
8888
lfs: true
8989
fetch-depth: 0 # Fetch full history to allow checking out any branch or PR
@@ -92,10 +92,10 @@ jobs:
9292
run: |
9393
git fetch origin pull/${{ github.event.inputs.pull_request_number }}/head:pr-${{ github.event.inputs.pull_request_number }}
9494
git checkout pr-${{ github.event.inputs.pull_request_number }}
95-
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
95+
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
9696
with:
9797
python-version: "3.10"
98-
- uses: ilammy/msvc-dev-cmd@ed94116c4d30d2091601b81f339a2eaa1c2ba0a6 # v1.4.1
98+
- uses: ilammy/msvc-dev-cmd@0b201ec74fa43914dc39ae48a89fd1d8cb592756 # v1.13.0
9999
- name: Install NNCF and test requirements
100100
run: |
101101
pip install -r tests/cross_fw/examples/requirements.txt

.github/workflows/install.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
run:
2323
shell: bash
2424
steps:
25-
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
25+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2626
with:
2727
lfs: true
2828
fetch-depth: 0 # Fetch full history to allow checking out any branch or PR
@@ -31,7 +31,7 @@ jobs:
3131
run: |
3232
git fetch origin pull/${{ github.event.inputs.pull_request_number }}/head:pr-${{ github.event.inputs.pull_request_number }}
3333
git checkout pr-${{ github.event.inputs.pull_request_number }}
34-
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
34+
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
3535
with:
3636
python-version: "3.10"
3737
- name: Install test requirements
@@ -67,15 +67,15 @@ jobs:
6767
nvidia-smi
6868
cat /proc/cpuinfo
6969
nvcc --version
70-
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
70+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
7171
with:
7272
lfs: true
7373
- name: Fetch and Checkout the Pull Request Branch
7474
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.pull_request_number != '' }}
7575
run: |
7676
git fetch origin pull/${{ github.event.inputs.pull_request_number }}/head:pr-${{ github.event.inputs.pull_request_number }}
7777
git checkout pr-${{ github.event.inputs.pull_request_number }}
78-
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
78+
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
7979
with:
8080
python-version: 3.10.14
8181
- name: Install test requirements

0 commit comments

Comments
 (0)