Skip to content

Commit

Permalink
Merge pull request #516 from Enselic/fix-node
Browse files Browse the repository at this point in the history
workflows: actions/checkout@v3 -> v4
  • Loading branch information
Enselic committed Feb 7, 2024
2 parents f665482 + 2900d85 commit 2d2f22b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/CI.yml
Expand Up @@ -15,7 +15,7 @@ jobs:
name: Minimum supported rust version
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable minus 2 releases # MSRV policy = last three versions of stable
Expand All @@ -41,17 +41,17 @@ jobs:
name: Documentation checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: RUSTDOCFLAGS='--deny warnings' cargo doc --no-deps --document-private-items --all-features

bat-tests:
name: Run bat syntax regression tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
path: 'syntect'
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: 'sharkdp/bat'
path: 'bat'
Expand All @@ -70,7 +70,7 @@ jobs:
name: Build and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true
- uses: dtolnay/rust-toolchain@stable
Expand Down

0 comments on commit 2d2f22b

Please sign in to comment.