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
2 changes: 1 addition & 1 deletion .github/workflows/backport.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
contains(github.event.comment.body, '/backport')
)
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Create backport pull requests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
working-directory: ${{ github.workspace }}/installer/windows
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Set up Python 3.8
uses: actions/setup-python@v5.5.0
with:
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/build-snap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

steps:
- name: Checking out repo
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Install lxd
run: |
sudo lxd init --auto
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
timeout-minutes: 30
steps:
- name: Checking out repo
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Prepare test prerequisites
uses: ./.github/actions/test-prep
- name: Running upgrade path test
Expand All @@ -66,7 +66,7 @@ jobs:
COLUMNS: 2048
steps:
- name: Checking out repo
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Prepare test prerequisites
uses: ./.github/actions/test-prep
- name: Running addons tests
Expand All @@ -91,7 +91,7 @@ jobs:
timeout-minutes: 60
steps:
- name: Checking out repo
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Prepare test prerequisites
uses: ./.github/actions/test-prep
- name: Running addons tests
Expand All @@ -111,7 +111,7 @@ jobs:
timeout-minutes: 30
steps:
- name: Checking out repo
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Prepare test prerequisites
uses: ./.github/actions/test-prep
- name: Running upgrade tests
Expand All @@ -129,7 +129,7 @@ jobs:
timeout-minutes: 30
steps:
- name: Checking out repo
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Prepare test prerequisites
uses: ./.github/actions/test-prep
- name: Running cluster agent health check
Expand All @@ -145,7 +145,7 @@ jobs:
timeout-minutes: 30
steps:
- name: Checking out repo
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Prepare test prerequisites
uses: ./.github/actions/test-prep
- name: Initialize LXD
Expand All @@ -169,7 +169,7 @@ jobs:
timeout-minutes: 30
steps:
- name: Checking out repo
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Fetch snap
uses: actions/download-artifact@v4
with:
Expand Down Expand Up @@ -215,7 +215,7 @@ jobs:
sarif_file_path: ${{ fromJson(needs.security-scan.outputs.sarif_files) }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Download SARIF files artifact
uses: actions/download-artifact@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-formatting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- { branch: 1.27-strict, channel: 1.27-strict }
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ matrix.branch }}
- name: Update image list
Expand Down