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/actions/rust-tool-cache/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ runs:
steps:
- name: Rust Tool Cache
id: tool-cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: |
~/.cargo/bin/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/CalculateUnsafeCode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ jobs:
owner: ${{ github.repository_owner }}

- name: ✅ Checkout Repository ✅
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
token: ${{ steps.app-token.outputs.token }}

- name: Checkout patina-devops scripts
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: OpenDevicePartnership/patina-devops
path: patina-devops-scripts
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/CiWorkflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

steps:
- name: ✅ Checkout Repository ✅
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: 🔤 Check Spelling 🔤
uses: streetsidesoftware/cspell-action@v8
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:

steps:
- name: ✅ Checkout Repository ✅
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: 🛠️ Download Rust Tools 🛠️
uses: OpenDevicePartnership/patina-devops/.github/actions/rust-tool-cache@main
Expand All @@ -96,7 +96,7 @@ jobs:

- name: Upload Coverage Report
if: github.repository_owner == 'OpenDevicePartnership'
uses: codecov/codecov-action@v6
uses: codecov/codecov-action@v7
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: target/lcov.info
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CrateVersionUpdater.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:

- name: ✅ Checkout Repository ✅
if: steps.check_pr.outputs.skip == 'false'
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: 🛠️ Download Rust Tools 🛠️
if: steps.check_pr.outputs.skip == 'false'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/FileSyncer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Generate Token
id: app-token
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/IssueTriager.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
template: [ bug_report.yml, documentation_request.yml, feature_request.yml, unstable_feature.yml ]

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Parse Issue Form
uses: stefanbuck/github-issue-parser@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/LabelSyncer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
issues: write

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
sparse-checkout: .github/Labels.yml
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/MdbookWorkflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
- name: ✅ Checkout Repository ✅
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: 🛠️ Download Rust Tools 🛠️
uses: OpenDevicePartnership/patina-devops/.github/actions/rust-tool-cache@main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/MsrvCheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
owner: ${{ github.repository_owner }}

- name: ✅ Checkout Repository ✅
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
token: ${{ steps.app-token.outputs.token }}

Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/PatinaQemuPrValidation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ jobs:
fi

- name: Checkout Repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: ${{ inputs.patina-ref != '' && 'OpenDevicePartnership/patina' || 'OpenDevicePartnership/patina-dxe-core-qemu' }}
ref: ${{ inputs.patina-ref || inputs.dxe-core-qemu-ref }}
Expand Down Expand Up @@ -216,7 +216,7 @@ jobs:

- name: Restore GitHub API File Cache
id: gh-file-cache
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
with:
path: .cache/github-files
key: ${{ steps.cache-keys.outputs.key }}
Expand Down Expand Up @@ -278,7 +278,7 @@ jobs:

- name: Save GitHub API File Cache
if: always() && steps.gh-file-cache.outputs.cache-hit != 'true' && steps.validate-qemu-assets.outputs.assets_complete == 'true'
uses: actions/cache/save@v5
uses: actions/cache/save@v6
with:
path: .cache/github-files
key: ${{ steps.cache-keys.outputs.key }}
Expand Down Expand Up @@ -489,7 +489,7 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: ${{ inputs.patina-ref != '' && 'OpenDevicePartnership/patina' || 'OpenDevicePartnership/patina-dxe-core-qemu' }}
ref: ${{ inputs.patina-ref || inputs.dxe-core-qemu-ref }}
Expand Down Expand Up @@ -535,7 +535,7 @@ jobs:

- name: Check Cache for patina-qemu FW Binary
id: firmware-cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: .cache/patina-qemu/${{ matrix.fw_zip }}
key: patina-qemu-fw-${{ matrix.fw_cache_key_suffix }}-${{ runner.os }}-${{ needs.preflight.outputs.fw_release_tag }}
Expand Down Expand Up @@ -601,7 +601,7 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: ${{ inputs.patina-ref != '' && 'OpenDevicePartnership/patina' || 'OpenDevicePartnership/patina-dxe-core-qemu' }}
ref: ${{ inputs.patina-ref || inputs.dxe-core-qemu-ref }}
Expand All @@ -623,7 +623,7 @@ jobs:

- name: Check Cache for patina-qemu FW Binaries
id: firmware-cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: |
.cache/patina-qemu/q35.zip
Expand Down Expand Up @@ -674,7 +674,7 @@ jobs:

- name: Restore QEMU ext_dep YAML Cache
id: qemu-yaml-cache
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
with:
path: .cache/github-files/qemu-windows_ext_dep.yaml
key: ${{ steps.qemu-yaml-key.outputs.key }}
Expand All @@ -694,7 +694,7 @@ jobs:

- name: Save QEMU ext_dep YAML Cache
if: always() && steps.qemu-yaml-cache.outputs.cache-hit != 'true'
uses: actions/cache/save@v5
uses: actions/cache/save@v6
with:
path: .cache/github-files/qemu-windows_ext_dep.yaml
key: ${{ steps.qemu-yaml-key.outputs.key }}
Expand All @@ -711,7 +711,7 @@ jobs:

- name: Cache Windows QEMU Package
id: qemu-cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: .cache/qemu/windows-qemu.zip
key: windows-qemu-${{ steps.windows-qemu.outputs.zip-url }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ReleaseWorkflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:

steps:
- name: ✅ Checkout Repository ✅
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/RustVersionCheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
owner: ${{ github.repository_owner }}

- name: ✅ Checkout PR ✅
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.sha }}
Expand Down
2 changes: 1 addition & 1 deletion .sync/workflows/leaf/publish-mdbook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:

steps:
- name: ✅ Checkout Repository ✅
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: 🛠️ Download Rust Tools 🛠️
uses: OpenDevicePartnership/patina-devops/.github/actions/rust-tool-cache@main
Expand Down
Loading