Skip to content
Merged
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
27 changes: 24 additions & 3 deletions .github/workflows/test-container-functionality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ env:
jobs:
functionality-810:
name: Functionality 8.1.0
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- name: Set test args
Expand All @@ -52,10 +52,17 @@ jobs:
run: |
cd utilities/container_benchmarking
./test_functionality.sh 8.1.0 ${{ steps.args.outputs.args }}
- name: Upload test results
if: always()
uses: actions/upload-artifact@v7
with:
name: test-results-810
path: utilities/container_benchmarking/test_results/
retention-days: 7
Comment on lines +55 to +61
Copy link

Copilot AI Apr 7, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This workflow uses actions/upload-artifact@v4, but the repo’s other workflows are already on actions/upload-artifact@v7 (e.g. build-810.yml). Consider bumping to v7 here as well to stay consistent and pick up the latest fixes/features.

Copilot uses AI. Check for mistakes.

functionality-binary:
name: Functionality binary
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- name: Set test args
Expand All @@ -72,10 +79,17 @@ jobs:
run: |
cd utilities/container_benchmarking
./test_functionality.sh binary ${{ steps.args.outputs.args }}
- name: Upload test results
if: always()
uses: actions/upload-artifact@v7
with:
name: test-results-binary
path: utilities/container_benchmarking/test_results/
retention-days: 7
Comment on lines +82 to +88
Copy link

Copilot AI Apr 7, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This workflow uses actions/upload-artifact@v4, but the repo’s other workflows are already on actions/upload-artifact@v7 (e.g. build-810.yml). Consider bumping to v7 here as well to stay consistent and pick up the latest fixes/features.

Copilot uses AI. Check for mistakes.

functionality-flex:
name: Functionality flex
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- name: Set test args
Expand All @@ -92,3 +106,10 @@ jobs:
run: |
cd utilities/container_benchmarking
./test_functionality.sh flex ${{ steps.args.outputs.args }}
- name: Upload test results
if: always()
uses: actions/upload-artifact@v7
with:
name: test-results-flex
path: utilities/container_benchmarking/test_results/
retention-days: 7
Comment on lines +109 to +115
Copy link

Copilot AI Apr 7, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This workflow uses actions/upload-artifact@v4, but the repo’s other workflows are already on actions/upload-artifact@v7 (e.g. build-810.yml). Consider bumping to v7 here as well to stay consistent and pick up the latest fixes/features.

Copilot uses AI. Check for mistakes.
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(If you don't do that in this PR, dependabot will open a PR right after you merge it.)