Skip to content

Commit ef8014a

Browse files
authored
Revert "ci: upgrade actions/checkout@v4, actions/github-script@v7, add test_retry_count input for build_and_test_ya action" (#8185)
1 parent 4a97ccb commit ef8014a

14 files changed

+17
-21
lines changed

.github/actions/build_and_test_ya/action.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,6 @@ inputs:
4242
additional_ya_make_args:
4343
type: string
4444
default: ""
45-
test_retry_count:
46-
default: ""
47-
description: "how many times to retry failed tests"
4845
secs:
4946
type: string
5047
default: ""
@@ -127,7 +124,6 @@ runs:
127124
bazel_remote_username: ${{ fromJSON( inputs.secs ).REMOTE_CACHE_USERNAME || '' }}
128125
bazel_remote_password: ${{ fromJSON( inputs.secs ).REMOTE_CACHE_PASSWORD || '' }}
129126
put_build_results_to_cache: ${{ inputs.put_build_results_to_cache }}
130-
test_retry_count: ${{ inputs.test_retry_count }}
131127

132128
- name: build_stats
133129
shell: bash

.github/workflows/acceptance_run.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
runs-on: [ self-hosted, "${{ inputs.runner_label || 'auto-provisioned' }}", "${{ format('build-preset-{0}', inputs.build_preset || 'relwithdebinfo') }}" ]
3030
steps:
3131
- name: Checkout
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@v3
3333
with:
3434
ref: ${{ inputs.commit_sha }}
3535

.github/workflows/allowed_dirs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
cancel-in-progress: true
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v3
1515

1616
- name: Check dirs
1717
run: ${{github.workspace}}/.github/check_dirs.sh ${{github.workspace}}

.github/workflows/build_analytics.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
runs-on: [ self-hosted, "${{ inputs.runner_label || 'auto-provisioned' }}", "${{ format('build-preset-{0}', inputs.build_preset || 'relwithdebinfo') }}" ]
3434
steps:
3535
- name: Checkout
36-
uses: actions/checkout@v4
36+
uses: actions/checkout@v3
3737
with:
3838
ref: ${{ inputs.commit_sha }}
3939

.github/workflows/build_and_test_provisioned.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
runs-on: [ self-hosted, "${{ inputs.runner_label }}" ]
4949
steps:
5050
- name: Checkout
51-
uses: actions/checkout@v4
51+
uses: actions/checkout@v3
5252
with:
5353
ref: ${{ inputs.checkout_ref }}
5454
- name: Build

.github/workflows/build_and_test_ya.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
runs-on: [ self-hosted, "${{ inputs.runner_label }}", "${{ inputs.runner_additional_label || inputs.runner_label }}"]
6666
steps:
6767
- name: Checkout
68-
uses: actions/checkout@v4
68+
uses: actions/checkout@v3
6969
with:
7070
ref: ${{ inputs.commit_sha }}
7171

.github/workflows/collect_analytics.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: [ self-hosted ]
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v3
2121
with:
2222
ref: ${{ inputs.commit_sha }}
2323
- name: Setup ydb access

.github/workflows/docs_build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v3
1717
with:
1818
ref: ${{ github.event.pull_request.head.sha }}
1919
- name: Build

.github/workflows/docs_release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v3
2121
- name: Extract version
2222
shell: bash
2323
run: echo "version=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" | sed -e 's|stable-|v|g' -e 's|-|.|g' >> $GITHUB_OUTPUT

.github/workflows/postcommit_asan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
name: Build and test release-asan
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v3
1919
with:
2020
fetch-depth: 2
2121
- name: Setup ydb access

.github/workflows/postcommit_relwithdebinfo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: Build and test relwithdebinfo
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v3
1818
with:
1919
fetch-depth: 2
2020
- name: Setup ydb access

.github/workflows/pr_check.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
3131
- name: Check if running tests is allowed
3232
id: check-ownership-membership
33-
uses: actions/github-script@v7
33+
uses: actions/github-script@v6
3434
with:
3535
github-token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
3636
script: |
@@ -81,7 +81,7 @@ jobs:
8181
- name: comment-if-waiting-on-ok
8282
if: steps.check-ownership-membership.outputs.result == 'false' &&
8383
github.event.action == 'opened'
84-
uses: actions/github-script@v7
84+
uses: actions/github-script@v6
8585
with:
8686
script: |
8787
let externalContributorLabel = 'external';
@@ -100,7 +100,7 @@ jobs:
100100
});
101101
102102
- name: cleanup-test-label
103-
uses: actions/github-script@v7
103+
uses: actions/github-script@v6
104104
with:
105105
script: |
106106
let labelsToRemove = ['ok-to-test', 'rebase-and-check'];
@@ -126,7 +126,7 @@ jobs:
126126
- name: check is mergeable
127127
id: check-is-mergeable
128128
if: steps.check-ownership-membership.outputs.result == 'true'
129-
uses: actions/github-script@v7
129+
uses: actions/github-script@v6
130130
with:
131131
result-encoding: string
132132
script: |
@@ -210,7 +210,7 @@ jobs:
210210
name: Build and test ${{ matrix.build_preset }}
211211
steps:
212212
- name: Checkout
213-
uses: actions/checkout@v4
213+
uses: actions/checkout@v3
214214
with:
215215
ref: ${{ needs.check-running-allowed.outputs.commit_sha }}
216216
fetch-depth: 2

.github/workflows/pr_labels.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
- name: Update PR labels
1717
id: update-pr-labels
18-
uses: actions/github-script@v7
18+
uses: actions/github-script@v6
1919
with:
2020
github-token: ${{ secrets.GITHUB_TOKEN }}
2121
script: |

.github/workflows/prewarm-ccache.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
version: ["ubuntu-2204", "ubuntu-2004", "ubuntu-1804"]
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v3
1717
- name: build
1818
shell: bash
1919
run: |

0 commit comments

Comments
 (0)