Skip to content

Commit

Permalink
Bump actions/checkout from 3 to 4 (#1044)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Oct 10, 2023
1 parent a59f256 commit 08531a1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Cache
uses: Swatinem/rust-cache@v2
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Cargo fmt --check
uses: actions-rs/cargo@v1
with:
Expand All @@ -45,7 +45,7 @@ jobs:
# Prevent sudden announcement of a new advisory from failing ci:
continue-on-error: ${{ matrix.checks == 'advisories' }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: EmbarkStudios/cargo-deny-action@v1
with:
command: check ${{ matrix.checks }}
Expand All @@ -65,7 +65,7 @@ jobs:
- name: Cache
uses: Swatinem/rust-cache@v2
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Clippy
uses: actions-rs/clippy-check@v1
with:
Expand All @@ -88,7 +88,7 @@ jobs:
- name: Cache
uses: Swatinem/rust-cache@v2
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Check
uses: actions-rs/cargo@v1
with:
Expand All @@ -109,7 +109,7 @@ jobs:
- name: Install cargo-hack
uses: taiki-e/install-action@cargo-hack
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Hack
run: cargo hack --feature-powerset check

Expand All @@ -129,7 +129,7 @@ jobs:
- name: Cache
uses: Swatinem/rust-cache@v2
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install nextest
uses: taiki-e/install-action@nextest
- name: Build containers
Expand All @@ -152,7 +152,7 @@ jobs:
- name: Cache
uses: Swatinem/rust-cache@v2
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build Documentation
run: cargo doc --no-deps -p northstar --all-features

Expand All @@ -161,7 +161,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Lint markdown
uses: docker://avtodev/markdown-lint:v1
with:
Expand All @@ -188,7 +188,7 @@ jobs:
- name: Cache
uses: Swatinem/rust-cache@v2
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Cross
run: cargo install --git https://github.com/cross-rs/cross.git --rev 99b8069 cross
- name: Build
Expand All @@ -213,7 +213,7 @@ jobs:
- name: Cache
uses: Swatinem/rust-cache@v2
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install northstar-nstar
run: cargo install --path northstar-nstar
- name: Install northstar-sextant
Expand Down Expand Up @@ -244,6 +244,6 @@ jobs:
# - name: Cross
# run: cargo install cross
# - name: Checkout
# uses: actions/checkout@v3
# uses: actions/checkout@v4
# - name: Examples
# run: ./examples/build.sh --target ${{ matrix.target }}
2 changes: 1 addition & 1 deletion .github/workflows/weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
security-events: write
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
Expand Down

0 comments on commit 08531a1

Please sign in to comment.