Skip to content

Commit c187fdd

Browse files
authored
Merge pull request #31 from coord-e/dependabot/github_actions/actions/checkout-6
Bump actions/checkout from 4 to 6
2 parents d4a9373 + fb3a0cd commit c187fdd

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ jobs:
1010
permissions:
1111
contents: read
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v6
1414
- run: rustup component add rustfmt
1515
- run: cargo fmt --all -- --check
1616
clippy:
1717
runs-on: ubuntu-latest
1818
permissions:
1919
contents: read
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v6
2222
- run: rustup component add clippy
2323
- run: cargo clippy -- -D warnings
2424
test:
@@ -29,7 +29,7 @@ jobs:
2929
# see tests/thrust-pcsat-wrapper
3030
COAR_IMAGE: ghcr.io/hiroshi-unno/coar@sha256:73144ed27a02b163d1a71b41b58f3b5414f12e91326015600cfdca64ff19f011
3131
steps:
32-
- uses: actions/checkout@v4
32+
- uses: actions/checkout@v6
3333
- uses: ./.github/actions/setup-z3
3434
- run: docker pull "$COAR_IMAGE"
3535
- run: rustup show

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
name: github-pages
2020
url: ${{ steps.deployment.outputs.page_url }}
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v6
2323
- run: cargo doc --no-deps --document-private-items
2424
- run: echo '<meta http-equiv="refresh" content="0;url=thrust">' > target/doc/index.html
2525
- uses: actions/configure-pages@v5

0 commit comments

Comments
 (0)