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

chore(deps): bump actions/upload-artifact from 3 to 4 #12220

Merged
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/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
luarocks config

- name: Bazel Outputs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: bazel-outputs
Expand Down
19 changes: 9 additions & 10 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
runner-count: ${{ env.RUNNER_COUNT }}

- name: Upload schedule files
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
continue-on-error: true
with:
name: schedule-test-files
Expand Down Expand Up @@ -227,8 +227,7 @@ jobs:
psql -hlocalhost -Ukong kong -tAc 'alter system set max_connections = 5000;'

- name: Download test schedule file
uses: actions/download-artifact@v3
continue-on-error: true
uses: actions/download-artifact@v4
with:
name: schedule-test-files

Expand All @@ -242,13 +241,13 @@ jobs:
make dev

- name: Download test rerun information
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
continue-on-error: true
with:
name: test-rerun-info-${{ matrix.runner }}

- name: Download test runtime statistics from previous runs
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
continue-on-error: true
with:
name: test-runtime-statistics-${{ matrix.runner }}
Expand Down Expand Up @@ -276,22 +275,22 @@ jobs:

- name: Upload test rerun information
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test-rerun-info-${{ matrix.runner }}
path: ${{ env.FAILED_TEST_FILES_FILE }}
retention-days: 2

- name: Upload test runtime statistics for offline scheduling
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test-runtime-statistics-${{ matrix.runner }}
path: ${{ env.TEST_FILE_RUNTIME_FILE }}
retention-days: 7

- name: Archive coverage stats file
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{ always() && (inputs.coverage == true || github.event_name == 'schedule') }}
with:
name: luacov-stats-out-${{ github.job }}-${{ github.run_id }}-${{ matrix.runner }}
Expand Down Expand Up @@ -338,7 +337,7 @@ jobs:
prove -I. -r t

- name: Archive coverage stats file
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{ always() && (inputs.coverage == true || github.event_name == 'schedule') }}
with:
name: luacov-stats-out-${{ github.job }}-${{ github.run_id }}
Expand Down Expand Up @@ -368,7 +367,7 @@ jobs:
sudo luarocks install luafilesystem

# Download all archived coverage stats files
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4

- name: Stats aggregation
shell: bash
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/perf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
luarocks

- name: Bazel Outputs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: bazel-outputs
Expand Down Expand Up @@ -267,7 +267,7 @@ jobs:
done

- name: Save results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: perf-results
Expand All @@ -278,7 +278,7 @@ jobs:
retention-days: 31

- name: Save error logs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: error_logs
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ jobs:
tail -n500 bazel-out/**/*/CMake.log || true

- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.label }}-packages
path: bazel-bin/pkg
Expand All @@ -290,7 +290,7 @@ jobs:
- uses: actions/checkout@v3

- name: Download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ matrix.label }}-packages
path: bazel-bin/pkg
Expand Down Expand Up @@ -322,14 +322,14 @@ jobs:
- uses: actions/checkout@v3

- name: Download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ matrix.artifact-from }}-packages
path: bazel-bin/pkg

- name: Download artifact (alt)
if: matrix.artifact-from-alt != ''
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ matrix.artifact-from-alt }}-packages
path: bazel-bin/pkg
Expand Down Expand Up @@ -618,7 +618,7 @@ jobs:
- uses: actions/checkout@v4

- name: Download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ matrix.artifact-from }}-packages
path: bazel-bin/pkg
Expand Down
Loading