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@v4
- uses: actions/checkout@v5

- uses: pnpm/action-setup@v4
name: Install pnpm
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/e2e-main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,20 +44,20 @@ jobs:
name: Run E2E tests
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
if: github.event_name == 'workflow_dispatch'
with:
repository: ${{ github.event.inputs.organization }}/${{ github.event.inputs.repositoryName }}
ref: ${{ github.event.inputs.branch }}
path: ${{ github.event.inputs.repositoryName }}

- uses: actions/checkout@v4
- uses: actions/checkout@v5
if: github.event_name == 'push'
with:
path: podman-desktop-extension-bootc

# Checkout podman desktop
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
repository: podman-desktop/podman-desktop
ref: main
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@v4
- uses: actions/checkout@v5

- uses: pnpm/action-setup@v4
name: Install pnpm
Expand Down Expand Up @@ -70,15 +70,15 @@ jobs:
env:
SKIP_INSTALLATION: true
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
path: podman-desktop-extension-bootc
- uses: actions/setup-node@v4
with:
node-version: 22

# Checkout podman desktop
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
repository: containers/podman-desktop
ref: main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: ${{ github.event.inputs.branch }}

Expand Down