Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[NU-1866] Bump GitHub actions artifact plugins #7146

Merged
merged 1 commit into from
Nov 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/benchmark-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
run: |
bash -c "export NUSSKNACKER_SCALA_VERSION=2.12 && sbt \"benchmarks/test:runMain pl.touk.nussknacker.engine.benchmarks.e2e.FlinkSteamingScenarioBenchmark 10000000\""
- name: Store benchmark results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: benchmark-e2e.csv
path: /tmp/benchmarkResult.csv
2 changes: 1 addition & 1 deletion .github/workflows/benchmark-jmh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Run benchmarks
run: sbt "benchmarks/jmh:run -i 8 -wi 3 -f1 -t1 -rf csv"
- name: Store benchmark results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: jmh-result.csv
path: benchmarks/jmh-result.csv
30 changes: 15 additions & 15 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
run: find . -wholename "**/target/**/*" -printf '%P\0' | tar --null -C '.' --files-from=- -czf 'target.tgz'
- name: Store target
if: ${{ env.shouldPerformBackendBuild == 'true' }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: build-target
path: target.tgz
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:
shell: bash
run: tar -czf 'fe-dist.tgz' designer/client/dist designer/submodules/dist
- name: Store dist
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: build-fe-dist
path: fe-dist.tgz
Expand All @@ -185,7 +185,7 @@ jobs:
- uses: coursier/setup-action@v1
with:
jvm: temurin:1.11.0.17
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: build-target
- name: Untar artifacts
Expand All @@ -205,7 +205,7 @@ jobs:
run: ./ciRunSbt.sh test
- name: Test Report
if: success() || failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: BackendTests-results-${{ matrix.scalaVersion }}
path: '**/test-reports/*.xml'
Expand Down Expand Up @@ -239,7 +239,7 @@ jobs:
~/.sbt
key: sbt-cache-${{ hashFiles('**/*.sbt') }}
restore-keys: sbt
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: build-target
- name: Untar artifacts
Expand All @@ -252,7 +252,7 @@ jobs:
run: ./ciRunSbt.sh It/test
- name: Test Report
if: success() || failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: IntegrationTests-results-${{ matrix.scalaVersion }}
path: '**/it-reports/*.xml'
Expand Down Expand Up @@ -286,7 +286,7 @@ jobs:
~/.sbt
key: sbt-cache-${{ hashFiles('**/*.sbt') }}
restore-keys: sbt
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: build-target
- name: Untar artifacts
Expand Down Expand Up @@ -319,7 +319,7 @@ jobs:
docker logs k3d-k3s-default-serverlb
- name: Test Report
if: success() || failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: SlowTests-results-${{ matrix.scalaVersion }}
path: '**/test-reports/*.xml'
Expand Down Expand Up @@ -367,7 +367,7 @@ jobs:
run: (cd designer/client; npm run test:unit)
- name: Test Report
if: ${{ env.shouldPerformFrontendTests == 'true' && (success() || failure()) }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: FrontendTests-results
path: designer/client/junit.xml
Expand Down Expand Up @@ -415,15 +415,15 @@ jobs:
npm ci --no-audit --prefix designer/client
npm ci --no-audit --prefix designer/submodules
rm -rf $npm_config_cache
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
if: ${{ env.shouldBuildImage == 'true' }}
with:
name: build-target
- name: Untar artifacts
if: ${{ env.shouldBuildImage == 'true' }}
shell: bash
run: tar xfz target.tgz
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: build-fe-dist
- name: Untar fe artifacts
Expand Down Expand Up @@ -470,13 +470,13 @@ jobs:
npx start-server-and-test backend:docker ${{ env.BE_PORT }} start-prod 3000 test:e2e
- name: Test Report
if: success() || failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: CypressTests-results
path: designer/client/cypress-test-results/*.xml
- name: Store test results
if: failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: e2e-test-results
path: |
Expand Down Expand Up @@ -550,13 +550,13 @@ jobs:
~/.sbt
key: sbt-cache-${{ hashFiles('**/*.sbt') }}
restore-keys: sbt
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: build-target
- name: Untar artifacts
shell: bash
run: tar xfz target.tgz
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: build-fe-dist
- name: Untar fe artifacts
Expand Down
Loading