Skip to content

Commit cdf4c52

Browse files
committed
Merge branch 'develop' into 'fb-bros-536/custom-interface-badge'
Workflow run: https://github.com/HumanSignal/label-studio/actions/runs/19174840494
2 parents 9f9579a + 480f40d commit cdf4c52

File tree

536 files changed

+20845
-7172
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

536 files changed

+20845
-7172
lines changed

.github/workflows/apply-linters.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
- name: Add Workflow link to chat ops command comment
2828
if: github.event.client_payload.github.payload.comment.id && github.event.client_payload.github.payload.repository.full_name
29-
uses: peter-evans/create-or-update-comment@v4
29+
uses: peter-evans/create-or-update-comment@v5
3030
with:
3131
token: ${{ secrets.GIT_PAT }}
3232
repository: ${{ github.event.client_payload.github.payload.repository.full_name }}
@@ -99,7 +99,7 @@ jobs:
9999

100100
- name: Add reaction to chat ops command comment
101101
if: always() && github.event.client_payload.github.payload.comment.id && github.event.client_payload.github.payload.repository.full_name
102-
uses: peter-evans/create-or-update-comment@v4
102+
uses: peter-evans/create-or-update-comment@v5
103103
with:
104104
token: ${{ secrets.GIT_PAT }}
105105
repository: ${{ github.event.client_payload.github.payload.repository.full_name }}

.github/workflows/bandit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
if: always()
4646
run: cat ${{ env.REPORT_PATH }}
4747

48-
- uses: actions/upload-artifact@v4
48+
- uses: actions/upload-artifact@v5
4949
if: always()
5050
with:
5151
name: Security check results

.github/workflows/build_pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ jobs:
217217
218218
- name: Upload to artifact
219219
if: always() && inputs.release_type == 'release'
220-
uses: actions/upload-artifact@v4
220+
uses: actions/upload-artifact@v5
221221
with:
222222
name: Dist
223223
path: dist/

.github/workflows/build_pypi_nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
104104
- name: Create Nightly Release
105105
id: create_release
106-
uses: softprops/action-gh-release@v2.3.3
106+
uses: softprops/action-gh-release@v2.4.1
107107
with:
108108
token: ${{ secrets.GIT_PAT }}
109109
body_path: ${{ github.workspace }}-CHANGELOG.txt

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ jobs:
2626
uses: actions/checkout@v5
2727

2828
- name: Initialize CodeQL
29-
uses: github/codeql-action/init@v3
29+
uses: github/codeql-action/init@v4
3030
with:
3131
languages: ${{ matrix.language }}
3232
config-file: ./.github/codeql/codeql-config.yaml
3333

3434
- name: Perform CodeQL Analysis
35-
uses: github/codeql-action/analyze@v3
35+
uses: github/codeql-action/analyze@v4
3636
with:
3737
category: "/language:${{matrix.language}}"

.github/workflows/docker-build-ontop.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ jobs:
116116
touch "${{ runner.temp }}/digests/${digest#sha256:}"
117117
118118
- name: Upload digest
119-
uses: actions/upload-artifact@v4
119+
uses: actions/upload-artifact@v5
120120
with:
121121
name: digests-${{ env.PLATFORM_PAIR }}
122122
path: ${{ runner.temp }}/digests/*
@@ -129,7 +129,7 @@ jobs:
129129
- docker_build
130130
steps:
131131
- name: Download digests
132-
uses: actions/download-artifact@v5
132+
uses: actions/download-artifact@v6
133133
with:
134134
path: ${{ runner.temp }}/digests
135135
pattern: digests-*

.github/workflows/docker-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ jobs:
169169
touch "${{ runner.temp }}/digests/${digest#sha256:}"
170170
171171
- name: Upload digest
172-
uses: actions/upload-artifact@v4
172+
uses: actions/upload-artifact@v5
173173
with:
174174
name: digests-${{ env.PLATFORM_PAIR }}
175175
path: ${{ runner.temp }}/digests/*
@@ -183,7 +183,7 @@ jobs:
183183
- calculate_version
184184
steps:
185185
- name: Download digests
186-
uses: actions/download-artifact@v5
186+
uses: actions/download-artifact@v6
187187
with:
188188
path: ${{ runner.temp }}/digests
189189
pattern: digests-*

.github/workflows/docker-command.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: hmarr/debug-action@v3.0.0
1919

2020
- name: Add Workflow link to command comment
21-
uses: peter-evans/create-or-update-comment@v4
21+
uses: peter-evans/create-or-update-comment@v5
2222
with:
2323
token: ${{ secrets.GIT_PAT }}
2424
repository: ${{ github.event.client_payload.github.payload.repository.full_name }}
@@ -93,7 +93,7 @@ jobs:
9393
esac
9494
9595
- name: Add reaction to command comment
96-
uses: peter-evans/create-or-update-comment@v4
96+
uses: peter-evans/create-or-update-comment@v5
9797
with:
9898
token: ${{ secrets.GIT_PAT }}
9999
repository: ${{ github.event.client_payload.github.payload.repository.full_name }}
@@ -108,7 +108,7 @@ jobs:
108108
timeout-minutes: 1
109109
steps:
110110
- name: Update comment
111-
uses: peter-evans/create-or-update-comment@v4
111+
uses: peter-evans/create-or-update-comment@v5
112112
with:
113113
token: ${{ secrets.GIT_PAT }}
114114
repository: ${{ github.event.client_payload.github.payload.repository.full_name }}

.github/workflows/docker-release-promote.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ jobs:
206206
touch "${{ runner.temp }}/digests/${digest#sha256:}"
207207
208208
- name: Upload digest
209-
uses: actions/upload-artifact@v4
209+
uses: actions/upload-artifact@v5
210210
with:
211211
name: digests-${{ env.PLATFORM_PAIR }}
212212
path: ${{ runner.temp }}/digests/*
@@ -219,7 +219,7 @@ jobs:
219219
- docker_release_retag
220220
steps:
221221
- name: Download digests
222-
uses: actions/download-artifact@v5
222+
uses: actions/download-artifact@v6
223223
with:
224224
path: ${{ runner.temp }}/digests
225225
pattern: digests-*

.github/workflows/feature-flags-update.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
- name: Add Workflow link to chat ops command comment
3333
if: github.event.client_payload.github.payload.comment.id && github.event.client_payload.github.payload.repository.full_name
34-
uses: peter-evans/create-or-update-comment@v4
34+
uses: peter-evans/create-or-update-comment@v5
3535
with:
3636
token: ${{ secrets.GIT_PAT }}
3737
repository: ${{ github.event.client_payload.github.payload.repository.full_name }}
@@ -81,7 +81,7 @@ jobs:
8181
8282
- name: Add reaction to chat ops command comment
8383
if: always() && github.event.client_payload.github.payload.comment.id && github.event.client_payload.github.payload.repository.full_name
84-
uses: peter-evans/create-or-update-comment@v4
84+
uses: peter-evans/create-or-update-comment@v5
8585
with:
8686
token: ${{ secrets.GIT_PAT }}
8787
repository: ${{ github.event.client_payload.github.payload.repository.full_name }}

0 commit comments

Comments
 (0)