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/container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

- id: checkout
name: Checkout Repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- id: compose
name: Compose
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

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

- name: Install LLVM tools
run: sudo apt-get update && sudo apt-get install -y llvm
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
steps:
- id: checkout
name: Checkout Repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- id: setup
name: Setup Toolchain
Expand All @@ -42,7 +42,7 @@ jobs:
steps:
- id: checkout
name: Checkout Repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- id: setup
name: Setup Toolchain
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/generate_coverage_pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

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

- name: Install LLVM tools
run: sudo apt-get update && sudo apt-get install -y llvm
Expand Down Expand Up @@ -59,13 +59,13 @@ jobs:
# Triggered sub-workflow is not able to detect the original commit/PR which is available
# in this workflow.
- name: Store PR number
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: pr_number
path: pr_number.txt

- name: Store commit SHA
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: commit_sha
path: commit_sha.txt
Expand All @@ -74,7 +74,7 @@ jobs:
# is executed by a different workflow `upload_coverage.yml`. The reason for this
# split is because `on.pull_request` workflows don't have access to secrets.
- name: Store coverage report in artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: codecov_report
path: ./codecov.json
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/labels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
steps:
- id: checkout
name: Checkout Repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- id: sync
name: Apply Labels from File
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
steps:
- id: checkout
name: Checkout Repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- id: setup
name: Setup Toolchain
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
steps:
- id: checkout
name: Checkout Repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- id: setup
name: Setup Toolchain
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- id: setup
name: Setup Toolchain
Expand All @@ -119,7 +119,7 @@ jobs:
steps:
- id: checkout
name: Checkout Repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- id: setup
name: Setup Toolchain
Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:

- id: checkout
name: Checkout Repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- id: test
name: Run E2E Tests
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/upload_coverage_pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
steps:
- name: "Download existing coverage report"
id: prepare_report
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
var fs = require('fs');
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
echo "override_commit=$(<commit_sha.txt)" >> "$GITHUB_OUTPUT"

- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ steps.parse_previous_artifacts.outputs.override_commit || '' }}
path: repo_root
Expand Down
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.