Skip to content
Open
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
8 changes: 4 additions & 4 deletions .github/workflows/ai-lab-e2e-nightly-windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ jobs:
arm-client-secret: ${{ secrets.ARM_CLIENT_SECRET }}

- name: Publish Test Report
uses: mikepenz/action-junit-report@v6
uses: mikepenz/action-junit-report@3a81627bfac62268172037048872e8ebd4207e6d # v6

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

question: latest is v6.4.1 ?

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

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

if: always()
with:
annotate_only: true
Expand All @@ -206,7 +206,7 @@ jobs:
report_paths: '**/*results.xml'

- name: Upload test artifacts
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

question: latest is v7.0.1

@ScrewTSW ScrewTSW Jun 11, 2026

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

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

latest commit, v7.0.1 actions/upload-artifact@043fb46

if: always()
with:
name: results-e2e-${{ matrix.windows-version }}${{ matrix.windows-featurepack }}
Expand All @@ -218,14 +218,14 @@ jobs:
!./**/output/traces/*

- name: Upload test videos
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
if: always()
with:
name: results-e2e-${{ matrix.windows-version }}${{ matrix.windows-featurepack }}-videos
path: ./**/output/videos/*

- name: Upload test traces
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
if: always()
with:
name: results-e2e-${{ matrix.windows-version }}${{ matrix.windows-featurepack }}-traces
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-next.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v6.0.3
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3

- uses: pnpm/action-setup@v6
- uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

question: latest is 6.0.8

@ScrewTSW ScrewTSW Jun 11, 2026

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

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

latest commit, v6.0.8 pnpm/action-setup@0e279bb

name: Install pnpm
with:
run_install: false

- uses: actions/setup-node@v6
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

question: latest is 6.4.0

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

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

with:
node-version: 24
cache: 'pnpm'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/compute-model-sizes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v6.0.3
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
# Runs a single command using the runners shell
- name: Compute model size
run: ./tools/compute-model-sizes.sh
18 changes: 9 additions & 9 deletions .github/workflows/e2e-main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,34 +51,34 @@ jobs:
echo "${{ github.event.inputs.ext_repo_options || env.DEFAULT_EXT_REPO_OPTIONS }}" | awk -F ',' \
'{for (i=1; i<=NF; i++) {split($i, kv, "="); print "EXT_"kv[1]"="kv[2]}}' >> $GITHUB_ENV

- uses: actions/checkout@v6.0.3
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
name: Checkout AI Lab - Workflow Dispatch
if: github.event_name == 'workflow_dispatch'
with:
repository: ${{ env.EXT_FORK }}/${{ env.EXT_REPO }}
ref: ${{ env.EXT_BRANCH }}
path: podman-desktop-extension-ai-lab

- uses: actions/checkout@v6.0.3
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
name: Checkout AI Lab - Push or Schedule
if: github.event_name == 'push' || github.event_name == 'schedule'
with:
path: podman-desktop-extension-ai-lab

- uses: actions/checkout@v6.0.3
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
name: Checkout Podman Desktop
with:
repository: ${{ env.PD_FORK }}/${{ env.PD_REPO }}
ref: ${{ env.PD_BRANCH }}
path: podman-desktop

- uses: pnpm/action-setup@v6
- uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6
name: Install pnpm
with:
run_install: false
package_json_file: ./podman-desktop/package.json

- uses: actions/setup-node@v6
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
with:
node-version: 24
cache: 'pnpm'
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
run: pnpm test:e2e

- name: Publish Test Report
uses: mikepenz/action-junit-report@v6
uses: mikepenz/action-junit-report@3a81627bfac62268172037048872e8ebd4207e6d # v6
if: always()
with:
annotate_only: true
Expand All @@ -154,7 +154,7 @@ jobs:
require_tests: true
report_paths: '**/*results.xml'

- uses: actions/upload-artifact@v7
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
if: always()
with:
name: e2e-tests
Expand All @@ -166,14 +166,14 @@ jobs:
!./**/output/traces/*

- name: Upload test videos
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
if: always()
with:
name: e2e-tests-videos
path: ./**/output/videos/*

- name: Upload test traces
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
if: always()
with:
name: e2e-tests-traces
Expand Down
22 changes: 11 additions & 11 deletions .github/workflows/pr-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ jobs:
matrix:
os: [windows-2022, ubuntu-22.04, macos-14]
steps:
- uses: actions/checkout@v6.0.3
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3

- uses: pnpm/action-setup@v6
- uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6
name: Install pnpm
with:
run_install: false

- uses: actions/setup-node@v6
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
with:
node-version: 24
cache: 'pnpm'
Expand Down Expand Up @@ -74,22 +74,22 @@ jobs:
env:
SKIP_INSTALLATION: true
steps:
- uses: actions/checkout@v6.0.3
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
path: podman-desktop-extension-ai-lab
# Set up pnpm
- uses: pnpm/action-setup@v6
- uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6
name: Install pnpm
with:
run_install: false
package_json_file: ./podman-desktop-extension-ai-lab/package.json
# Install Node.js
- uses: actions/setup-node@v6
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
with:
node-version: 24

# Checkout podman desktop
- uses: actions/checkout@v6.0.3
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
repository: containers/podman-desktop
ref: main
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
run: pnpm test:e2e:smoke

- name: Publish Test Report
uses: mikepenz/action-junit-report@v6
uses: mikepenz/action-junit-report@3a81627bfac62268172037048872e8ebd4207e6d # v6
if: always()
with:
annotate_only: true
Expand All @@ -165,7 +165,7 @@ jobs:
require_tests: true
report_paths: '**/*results.xml'

- uses: actions/upload-artifact@v7
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
if: always()
with:
name: e2e-pr-check
Expand All @@ -177,14 +177,14 @@ jobs:
!./**/output/traces/*

- name: Upload test videos
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
if: always()
with:
name: e2e-pr-check-videos
path: ./**/output/videos/*

- name: Upload test traces
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
if: always()
with:
name: e2e-pr-check-traces
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/ramalama.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,21 +36,21 @@ jobs:
env:
SKIP_INSTALLATION: true
steps:
- uses: actions/checkout@v6.0.3
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
path: podman-desktop-extension-ai-lab
# Set up pnpm
- uses: pnpm/action-setup@v6
- uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6
name: Install pnpm
with:
run_install: false
package_json_file: ./podman-desktop-extension-ai-lab/package.json
# Install Node.js
- uses: actions/setup-node@v6
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
with:
node-version: 24
# Checkout podman desktop
- uses: actions/checkout@v6.0.3
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
repository: podman-desktop/podman-desktop
ref: main
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
run: pnpm test:e2e

- name: Publish Test Report
uses: mikepenz/action-junit-report@v6
uses: mikepenz/action-junit-report@3a81627bfac62268172037048872e8ebd4207e6d # v6
if: always()
with:
annotate_only: true
Expand All @@ -130,7 +130,7 @@ jobs:
require_tests: true
report_paths: '**/*results.xml'

- uses: actions/upload-artifact@v7
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
if: always()
with:
name: e2e-check
Expand All @@ -142,14 +142,14 @@ jobs:
!./**/output/traces/*

- name: Upload test videos
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
if: always()
with:
name: e2e-check-videos
path: ./**/output/videos/*

- name: Upload test traces
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
if: always()
with:
name: e2e-check-traces
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/recipe-catalog-change-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ jobs:

- name: Publish Test Report
id: test-report
uses: mikepenz/action-junit-report@v6
uses: mikepenz/action-junit-report@3a81627bfac62268172037048872e8ebd4207e6d # v6
if: always() # always run even if the previous step fails
with:
annotate_only: true
Expand Down Expand Up @@ -296,7 +296,7 @@ jobs:
podman logs -f windows-destroy

- name: Upload test artifacts
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
if: always()
with:
name: results-e2e-${{ matrix.windows-version }}${{ matrix.windows-featurepack }}
Expand All @@ -308,14 +308,14 @@ jobs:
!./**/output/traces/*

- name: Upload test videos
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
if: always()
with:
name: results-e2e-${{ matrix.windows-version }}${{ matrix.windows-featurepack }}-videos
path: ./**/output/videos/*

- name: Upload test traces
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
if: always()
with:
name: results-e2e-${{ matrix.windows-version }}${{ matrix.windows-featurepack }}-traces
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
releaseId: ${{ steps.create_release.outputs.id}}

steps:
- uses: actions/checkout@v6.0.3
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
ref: ${{ github.event.inputs.branch }}
- name: Generate tag utilities
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
git push origin ${{ steps.TAG_UTIL.outputs.githubTag }}
- name: Create Release
id: create_release
uses: ncipollo/release-action@v1
uses: ncipollo/release-action@339a81892b84b4eeb0f6e744e4574d79d0d9b8dd # v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down Expand Up @@ -116,16 +116,16 @@ jobs:
needs: [tag]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6.0.3
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
ref: ${{ needs.tag.outputs.githubTag }}

- uses: pnpm/action-setup@v6
- uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6
name: Install pnpm
with:
run_install: false

- uses: actions/setup-node@v6
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
with:
node-version: 24
cache: 'pnpm'
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:
run: echo the release id is ${{ needs.tag.outputs.releaseId}}

- name: Publish release
uses: StuYarrow/publish-release@v1.1.2
uses: StuYarrow/publish-release@01f2a1365bacd77bad861873a7fdf274ab49eefd # v1.1.2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down
Loading