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/Benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
steps:
### Setup ###

- uses: actions/checkout@v4
- uses: actions/checkout@v5

- uses: hyperlight-dev/ci-setup-workflow@v1.6.0
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CargoAudit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

# We are not using the common workflow here because it installs a bunch of tools we don't need.
# TODO: Once the runner image is updated to include the necessary tools (without downloading), we can switch to the common workflow.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CargoPublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
if: ${{ startsWith(github.ref, 'refs/heads/release/v') || inputs.dry_run }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0
fetch-tags: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CleanUpReleasesAndPackages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ github.token }}

- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Delete old Github Actions Artifacts
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CreateDevcontainerImage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Read Rust toolchain version from ${{ env.RUST_TOOLCHAIN_FILE }}
id: toolchain
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/CreateRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
needs: [release-blocker-check]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- uses: hyperlight-dev/ci-setup-workflow@v1.6.0
with:
Expand All @@ -50,7 +50,7 @@ jobs:
needs: [release-blocker-check]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- uses: hyperlight-dev/ci-setup-workflow@v1.6.0
with:
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
if: ${{ contains(github.ref, 'refs/heads/release/') }}
run: echo "CONFIG=release" >> $GITHUB_ENV

- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0
fetch-tags: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CreateReleaseBranch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Create Release Branch
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/IssueLabelChecker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
labeler:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Check and Add label
run: |
# The cryptic head -c -1 is because otherwise gh always terminates output with a newline
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/PRLabelChecker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
check-labels:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Ensure exactly one "kind/*" label is applied
run: |
# Count the number of "kind/*" labels directly from the PR labels
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ReleaseBlockerCheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
check-blockers:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Check for Release Blocking Issues
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ReleaseBlockerLabelCleanUp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Remove release-blocker label from closed issue
run: |
ISSUE_NUMBER=${{ github.event.issue.number }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ValidatePullRequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,15 @@ jobs:
name: spell check with typos
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Spell Check Repo
uses: crate-ci/typos@v1.35.3

license-headers:
name: check license headers
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Check License Headers
run: ./dev/check-license-headers.sh

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/auto-merge-dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
permission-contents: write

- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
token: ${{ steps.get-app-token.outputs.token }}
persist-credentials: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/copilot-setup-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
# If you do not check out your code, Copilot will do this for you.
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5

# For rust-fmt
- name: Set up nightly rust
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dep_build_guest_binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
config: release

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- uses: hyperlight-dev/ci-setup-workflow@v1.6.0
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dep_fuzzing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
target: ${{ fromJson(inputs.targets) }}
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5

- uses: hyperlight-dev/ci-setup-workflow@v1.6.0
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dep_rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
(matrix.hypervisor == 'hyperv-ws2025') && 'Windows' || 'Linux',
matrix.hypervisor == 'hyperv-ws2025' && 'win2025' || 'kvm')) }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- uses: hyperlight-dev/ci-setup-workflow@v1.6.0
with:
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
matrix.hypervisor == 'hyperv' && 'win2022' || matrix.hypervisor == 'hyperv-ws2025' && 'win2025' || matrix.hypervisor == 'mshv3' && 'azlinux3-mshv' || matrix.hypervisor,
matrix.cpu)) }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

# For rust-fmt
- name: Set up nightly rust
Expand Down
Loading