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/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
# Setup Node and pnpm
- uses: pnpm/action-setup@v4
name: Install pnpm
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pr-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
name: linter, formatters
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
matrix:
os: [windows-2022, ubuntu-24.04, macos-15]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- uses: pnpm/action-setup@v4
name: Install pnpm
Expand All @@ -90,7 +90,7 @@ jobs:
name: Build Extension Image
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Build Image and Extract Files
id: build-image
run: |
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
# by default playwright cache browsers binaries in ~/.cache/ms-playwright on Linux and %USERPROFILE%\AppData\Local\ms-playwright on Windows
PLAYWRIGHT_BROWSERS_PATH: ${{ github.workspace }}/podman-desktop/pw-browsers
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

# ==============================================
# Installing Podman
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
- uses: actions/checkout@v6
with:
ref: ${{ github.event.inputs.branch }}
- name: Generate tag utilities
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
needs: [tag]
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
ref: ${{ needs.tag.outputs.githubTag }}

Expand Down