Skip to content

Commit d366396

Browse files
authored
Merge pull request #16 from tomphp/dependabot/github_actions/actions/checkout-6
fix(deps): bump actions/checkout from 4 to 6
2 parents 4a1fcef + e014eda commit d366396

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/test-checkout-rust-project.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
test-with-default-arguments:
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: actions/checkout@v4
8+
- uses: actions/checkout@v6
99
- uses: ./checkout-rust-project
1010
- name: Assert project is checked out
1111
run: grep "# GitHub Actions" README.md
@@ -15,7 +15,7 @@ jobs:
1515
test-with-clippy-component-installed:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v6
1919
- uses: ./checkout-rust-project
2020
with:
2121
rust-components: clippy

.github/workflows/test-determine-binary-name.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
expected-suffix: x86_64-apple-darwin
2121
runs-on: ${{ matrix.os.image }}
2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v6
2424
- uses: ./determine-binary-name
2525
id: run-action
2626
with:
@@ -60,7 +60,7 @@ jobs:
6060
expected-suffix: macos
6161
runs-on: ${{ matrix.os.image }}
6262
steps:
63-
- uses: actions/checkout@v4
63+
- uses: actions/checkout@v6
6464
- uses: ./determine-binary-name
6565
id: run-action
6666
with:

.github/workflows/test-determine-release-url.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
expected-url: https://github.com/example-org/example-app/releases/latest/download/my-binary-x86_64-apple-darwin
1515
runs-on: ${{ matrix.os.image }}
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v6
1818
- uses: ./determine-release-url
1919
id: run-action
2020
with:
@@ -39,7 +39,7 @@ jobs:
3939
expected-url: https://github.com/demo-org/demo-app/releases/latest/download/program-macos
4040
runs-on: ${{ matrix.os.image }}
4141
steps:
42-
- uses: actions/checkout@v4
42+
- uses: actions/checkout@v6
4343
- uses: ./determine-release-url
4444
id: run-action
4545
with:

.github/workflows/test-install-release-binary.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- macos-latest
1212
runs-on: ${{ matrix.os }}
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v6
1515
- uses: ./install-release-binary
1616
id: run-action
1717
with:
@@ -29,7 +29,7 @@ jobs:
2929
- macos-latest
3030
runs-on: ${{ matrix.os }}
3131
steps:
32-
- uses: actions/checkout@v4
32+
- uses: actions/checkout@v6
3333
- uses: ./install-release-binary
3434
id: run-action
3535
with:

0 commit comments

Comments
 (0)