Skip to content

Commit

Permalink
Merge pull request #638 from dbus2/renovate/actions-checkout-4.x
Browse files Browse the repository at this point in the history
⬆️ Update actions/checkout action to v4
  • Loading branch information
zeenix authored Feb 20, 2024
2 parents cf1c88f + 9498f39 commit 1e4ffa9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
contents: write # To push a branch
pull-requests: write # To create a PR from that branch
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install latest mdbook
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
- uses: spenserblack/actions-tag-to-release@main
14 changes: 7 additions & 7 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
RUSTFLAGS: -D warnings
MSRV: 1.75.0
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ env.MSRV }}
Expand All @@ -37,7 +37,7 @@ jobs:
RUST_BACKTRACE: full
RUST_LOG: trace
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
Expand All @@ -56,7 +56,7 @@ jobs:
RUST_BACKTRACE: full
RUST_LOG: trace
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup
run: |
sudo mkdir -p /run/user/$UID |
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
DBUS_SESSION_BUS_ADDRESS: tcp:host=127.0.0.1,port=9876
ZBUS_GDBUS_TEST: 1
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Cache Dependencies
id: cache-deps
Expand Down Expand Up @@ -214,7 +214,7 @@ jobs:
env:
RUSTFLAGS: -D warnings
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
Expand All @@ -232,7 +232,7 @@ jobs:
RUSTFLAGS: -D warnings
RUST_BACKTRACE: full
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
Expand All @@ -248,7 +248,7 @@ jobs:
env:
RUSTDOCFLAGS: -D warnings
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
Expand Down

0 comments on commit 1e4ffa9

Please sign in to comment.