diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2025-08-12 08:44:36 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-08-12 08:44:36 -0400 |
commit | 7f977c51437a79cb117dafd5739a739e4fdc4040 (patch) | |
tree | 10647abf2ef28cf81757c3a4ff157e530e91ee45 /.github/workflows/ci.yml | |
parent | d2ec74c8893e47005404065007ba7ad376aab20c (diff) | |
parent | 243aba0159579ac3f6f5596f6dfbaee3c7c0818d (diff) | |
download | bfs-7f977c51437a79cb117dafd5739a739e4fdc4040.tar.xz |
Merge pull request #160 from tavianator/dependabot/github_actions/actions/checkout-5
build(deps): bump actions/checkout from 4 to 5
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8647e2b..9caf9cb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install dependencies run: | @@ -53,7 +53,7 @@ jobs: if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install dependencies run: | @@ -84,7 +84,7 @@ jobs: if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install dependencies run: | @@ -102,7 +102,7 @@ jobs: if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Run tests uses: cross-platform-actions/action@v0.28.0 @@ -130,7 +130,7 @@ jobs: if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Run tests uses: cross-platform-actions/action@v0.28.0 @@ -159,7 +159,7 @@ jobs: if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Run tests uses: cross-platform-actions/action@v0.28.0 @@ -189,7 +189,7 @@ jobs: if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Run tests uses: vmactions/dragonflybsd-vm@v1 @@ -225,7 +225,7 @@ jobs: if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Run tests uses: vmactions/omnios-vm@v1 |