Skip to content

Commit 83dbb58

Browse files
chore(deps): bump actions/checkout from 5 to 6 (#20)
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...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> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 84b8405 commit 83dbb58

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/continuous-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ jobs:
1414
matrix:
1515
os: [ubuntu-latest, windows-latest, macos-latest]
1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818
- name: Build
1919
run: cargo build --all-targets --all-features

.github/workflows/dependabot.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
auto-merge:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v5
11+
- uses: actions/checkout@v6
1212
- uses: ahmadnassri/action-dependabot-auto-merge@v2
1313
with:
1414
target: minor

.github/workflows/mega-linter.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
steps:
5555
# Git Checkout
5656
- name: Checkout Code
57-
uses: actions/checkout@v5
57+
uses: actions/checkout@v6
5858
with:
5959
token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }}
6060

@@ -164,7 +164,7 @@ jobs:
164164
runs-on: ubuntu-latest
165165
steps:
166166
- name: Checkout code
167-
uses: actions/checkout@v5
167+
uses: actions/checkout@v6
168168
- name: Rustfmt check on src
169169
run: cargo fmt --manifest-path Cargo.toml -- --check
170170

@@ -173,7 +173,7 @@ jobs:
173173
runs-on: ubuntu-latest
174174
steps:
175175
- name: Checkout code
176-
uses: actions/checkout@v5
176+
uses: actions/checkout@v6
177177
- name: Clippy check on template example
178178
run: |
179179
cd template

0 commit comments

Comments
 (0)