Skip to content
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-next.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v5.0.1
- uses: actions/checkout@v6.0.0

- uses: pnpm/action-setup@v4
name: Install 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@v5.0.1
- uses: actions/checkout@v6.0.0
# Runs a single command using the runners shell
- name: Compute model size
run: ./tools/compute-model-sizes.sh
6 changes: 3 additions & 3 deletions .github/workflows/e2e-main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,21 +51,21 @@ 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@v5.0.1
- uses: actions/checkout@v6.0.0
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@v5.0.1
- uses: actions/checkout@v6.0.0
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@v5.0.1
- uses: actions/checkout@v6.0.0
name: Checkout Podman Desktop
with:
repository: ${{ env.PD_FORK }}/${{ env.PD_REPO }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pr-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
matrix:
os: [windows-2022, ubuntu-22.04, macos-14]
steps:
- uses: actions/checkout@v5.0.1
- uses: actions/checkout@v6.0.0

- uses: pnpm/action-setup@v4
name: Install pnpm
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
env:
SKIP_INSTALLATION: true
steps:
- uses: actions/checkout@v5.0.1
- uses: actions/checkout@v6.0.0
with:
path: podman-desktop-extension-ai-lab
# Set up pnpm
Expand All @@ -89,7 +89,7 @@ jobs:
node-version: 22

# Checkout podman desktop
- uses: actions/checkout@v5.0.1
- uses: actions/checkout@v6.0.0
with:
repository: containers/podman-desktop
ref: main
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ramalama.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
env:
SKIP_INSTALLATION: true
steps:
- uses: actions/checkout@v5.0.1
- uses: actions/checkout@v6.0.0
with:
path: podman-desktop-extension-ai-lab
# Set up pnpm
Expand All @@ -50,7 +50,7 @@ jobs:
with:
node-version: 22
# Checkout podman desktop
- uses: actions/checkout@v5.0.1
- uses: actions/checkout@v6.0.0
with:
repository: podman-desktop/podman-desktop
ref: main
Expand Down
4 changes: 2 additions & 2 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@v5.0.1
- uses: actions/checkout@v6.0.0
with:
ref: ${{ github.event.inputs.branch }}
- name: Generate tag utilities
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
needs: [tag]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5.0.1
- uses: actions/checkout@v6.0.0
with:
ref: ${{ needs.tag.outputs.githubTag }}

Expand Down
Loading