mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-18 15:33:08 +02:00
Bump actions/checkout from 4 to 5 (#3930)
Some checks are pending
checks / Check & Clippy (push) Waiting to run
checks / Formatting (push) Waiting to run
checks / Cargo Metadata (push) Waiting to run
release-tests / check-tarball (push) Waiting to run
tests / coverage (push) Waiting to run
tests / tests (Mac OS 12.latest) (push) Blocked by required conditions
tests / tests (Mac OS 13.latest) (push) Blocked by required conditions
tests / Cargo Test (push) Waiting to run
tests / tests (arch, Archlinux Base (Rolling), ubuntu-latest) (push) Blocked by required conditions
tests / tests (debiantesting, Debian Testing, ubuntu-latest) (push) Blocked by required conditions
tests / tests (fedora40, Fedora 40, ubuntu-latest) (push) Blocked by required conditions
tests / tests (fedora41, Fedora 41, ubuntu-latest) (push) Blocked by required conditions
tests / tests (opensuse, OpenSUSE Tumbleweed (Rolling), ubuntu-latest) (push) Blocked by required conditions
tests / tests (ubuntu2004, Ubuntu 20.04, ubuntu-latest) (push) Blocked by required conditions
tests / tests (ubuntu2204, Ubuntu 22.04, ubuntu-latest) (push) Blocked by required conditions
Some checks are pending
checks / Check & Clippy (push) Waiting to run
checks / Formatting (push) Waiting to run
checks / Cargo Metadata (push) Waiting to run
release-tests / check-tarball (push) Waiting to run
tests / coverage (push) Waiting to run
tests / tests (Mac OS 12.latest) (push) Blocked by required conditions
tests / tests (Mac OS 13.latest) (push) Blocked by required conditions
tests / Cargo Test (push) Waiting to run
tests / tests (arch, Archlinux Base (Rolling), ubuntu-latest) (push) Blocked by required conditions
tests / tests (debiantesting, Debian Testing, ubuntu-latest) (push) Blocked by required conditions
tests / tests (fedora40, Fedora 40, ubuntu-latest) (push) Blocked by required conditions
tests / tests (fedora41, Fedora 41, ubuntu-latest) (push) Blocked by required conditions
tests / tests (opensuse, OpenSUSE Tumbleweed (Rolling), ubuntu-latest) (push) Blocked by required conditions
tests / tests (ubuntu2004, Ubuntu 20.04, ubuntu-latest) (push) Blocked by required conditions
tests / tests (ubuntu2204, Ubuntu 22.04, ubuntu-latest) (push) Blocked by required conditions
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' 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>
This commit is contained in:
parent
27ac9772a1
commit
64ef86c0e0
5 changed files with 11 additions and 11 deletions
6
.github/workflows/checks.yml
vendored
6
.github/workflows/checks.yml
vendored
|
@ -13,7 +13,7 @@ jobs:
|
|||
name: "Check & Clippy"
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v5
|
||||
|
||||
- uses: dtolnay/rust-toolchain@master
|
||||
id: toolchain
|
||||
|
@ -51,7 +51,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
name: "Formatting"
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v5
|
||||
|
||||
- uses: dtolnay/rust-toolchain@master
|
||||
id: toolchain
|
||||
|
@ -68,7 +68,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
name: "Cargo Metadata"
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v5
|
||||
|
||||
- uses: dtolnay/rust-toolchain@master
|
||||
id: toolchain
|
||||
|
|
2
.github/workflows/docker-image.yaml
vendored
2
.github/workflows/docker-image.yaml
vendored
|
@ -28,7 +28,7 @@ jobs:
|
|||
GHCR_REPOSITORY="${{ github.repository_owner }}"
|
||||
echo "REPOSITORY=${GHCR_REPOSITORY,,}" >> ${GITHUB_ENV}
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
with:
|
||||
submodules: "recursive"
|
||||
|
||||
|
|
2
.github/workflows/release-check.yaml
vendored
2
.github/workflows/release-check.yaml
vendored
|
@ -4,7 +4,7 @@ jobs:
|
|||
check-tarball:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v5
|
||||
|
||||
- uses: dtolnay/rust-toolchain@stable
|
||||
id: toolchain
|
||||
|
|
2
.github/workflows/security.yml
vendored
2
.github/workflows/security.yml
vendored
|
@ -14,7 +14,7 @@ jobs:
|
|||
permissions: write-all
|
||||
name: "Audit Rust Dependencies"
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v5
|
||||
- uses: rustsec/audit-check@master
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
|
10
.github/workflows/tests.yaml
vendored
10
.github/workflows/tests.yaml
vendored
|
@ -14,7 +14,7 @@ jobs:
|
|||
run: sudo apt-get install -y build-essential cmake git uuid-dev faketime locales python3 curl gcovr ninja-build
|
||||
|
||||
- name: Check out this repository
|
||||
uses: actions/checkout@v4.1.6
|
||||
uses: actions/checkout@v5
|
||||
|
||||
- name: Configure project
|
||||
run: cmake -S . -B build -G Ninja -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS=--coverage
|
||||
|
@ -44,7 +44,7 @@ jobs:
|
|||
if: false # see #3242
|
||||
runs-on: macos-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v5
|
||||
|
||||
- uses: dtolnay/rust-toolchain@stable
|
||||
id: toolchain
|
||||
|
@ -71,7 +71,7 @@ jobs:
|
|||
if: false # see #3242
|
||||
runs-on: macos-13
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v5
|
||||
|
||||
- uses: dtolnay/rust-toolchain@stable
|
||||
id: toolchain
|
||||
|
@ -98,7 +98,7 @@ jobs:
|
|||
name: "Cargo Test"
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v5
|
||||
|
||||
- uses: dtolnay/rust-toolchain@master
|
||||
id: toolchain
|
||||
|
@ -154,7 +154,7 @@ jobs:
|
|||
runs-on: ${{ matrix.runner }}
|
||||
continue-on-error: ${{ matrix.continue-on-error == true }}
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v5
|
||||
|
||||
- name: Build ${{ matrix.name }}
|
||||
env:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue