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/contract.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
steps:
- id: checkout
name: Checkout Repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- id: setup
name: Setup Toolchain
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@v5

- name: Install LLVM tools
run: sudo apt-get update && sudo apt-get install -y llvm
Expand Down
2 changes: 1 addition & 1 deletion .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@v5

- name: Install LLVM tools
run: sudo apt-get update && sudo apt-get install -y llvm
Expand Down
6 changes: 3 additions & 3 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@v5

- 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@v5

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

- id: setup
name: Setup Toolchain
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upload_coverage_pr.yaml
Original file line number Diff line number Diff line change
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@v5
with:
ref: ${{ steps.parse_previous_artifacts.outputs.override_commit || '' }}
path: repo_root
Expand Down
Loading