Skip to content

Commit 4c20e63

Browse files
authored
Merge pull request #3209 from 1c-syntax/dependabot/github_actions/actions/upload-artifact-4
build(deps): bump actions/upload-artifact from 3 to 4
2 parents 7c5f2ad + 4d27273 commit 4c20e63

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/gradle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run: ./gradlew check --stacktrace
3232
- name: Archive test results
3333
if: failure()
34-
uses: actions/upload-artifact@v3
34+
uses: actions/upload-artifact@v4
3535
with:
3636
name: junit_report_${{ matrix.os }}_${{ matrix.java_version }}
3737
path: build/reports/tests/test

.github/workflows/pre-qa.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: echo ${{ github.event.number }} > PR_NUMBER.txt
2222
- name: Archive PR number
2323
if: github.event_name == 'pull_request'
24-
uses: actions/upload-artifact@v3
24+
uses: actions/upload-artifact@v4
2525
with:
2626
name: PR_NUMBER
2727
path: PR_NUMBER.txt

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
run: python .github/scripts/build-jpackage.py ${{ matrix.prefix }} ${{ matrix.app-image }}
4444

4545
- name: Upload artifact
46-
uses: actions/upload-artifact@v3
46+
uses: actions/upload-artifact@v4
4747
with:
4848
name: bsl-language-server_${{ matrix.prefix }}.zip
4949
path: ./${{ matrix.app-image }}

0 commit comments

Comments
 (0)