Skip to content

Commit 74a89ee

Browse files
chore(deps): bump actions/checkout from 4 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 9634037 commit 74a89ee

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/contract.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
steps:
2020
- id: checkout
2121
name: Checkout Repository
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v6
2323

2424
- id: setup
2525
name: Setup Toolchain

.github/workflows/coverage.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
- name: Checkout repository
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v6
2323

2424
- name: Install LLVM tools
2525
run: sudo apt-get update && sudo apt-get install -y llvm

.github/workflows/generate_coverage_pr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
- name: Checkout repository
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v6
2323

2424
- name: Install LLVM tools
2525
run: sudo apt-get update && sudo apt-get install -y llvm

.github/workflows/testing.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
- id: checkout
1717
name: Checkout Repository
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919

2020
- id: setup
2121
name: Setup Toolchain
@@ -44,7 +44,7 @@ jobs:
4444
steps:
4545
- id: checkout
4646
name: Checkout Repository
47-
uses: actions/checkout@v4
47+
uses: actions/checkout@v6
4848

4949
- id: setup
5050
name: Setup Toolchain
@@ -97,7 +97,7 @@ jobs:
9797
steps:
9898
- id: checkout
9999
name: Checkout Repository
100-
uses: actions/checkout@v4
100+
uses: actions/checkout@v6
101101

102102
- id: setup
103103
name: Setup Toolchain

.github/workflows/upload_coverage_pr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
echo "override_commit=$(<commit_sha.txt)" >> "$GITHUB_OUTPUT"
9797
9898
- name: Checkout repository
99-
uses: actions/checkout@v4
99+
uses: actions/checkout@v6
100100
with:
101101
ref: ${{ steps.parse_previous_artifacts.outputs.override_commit || '' }}
102102
path: repo_root

0 commit comments

Comments
 (0)