Skip to content

Commit

Permalink
Merge pull request #99 from termoshtt/dependabot/github_actions/actio…
Browse files Browse the repository at this point in the history
…ns/checkout-4

Bump actions/checkout from 1 to 4
  • Loading branch information
termoshtt committed Apr 6, 2024
2 parents e3bbd3a + 17fc350 commit 29323d6
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
cpp-lib:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- uses: actions-rs/cargo@v1
with:
command: install
Expand All @@ -32,7 +32,7 @@ jobs:
runs-on: ubuntu-22.04
continue-on-error: true
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- uses: actions-rs/cargo@v1
with:
command: install
Expand All @@ -52,7 +52,7 @@ jobs:
rust-exe:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- uses: actions-rs/cargo@v1
with:
command: install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

# Generate cargo-doc
- uses: actions-rs/cargo@v1
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ocipkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
pack:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- uses: actions-rs/cargo@v1
with:
command: install
Expand All @@ -29,7 +29,7 @@ jobs:
load:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- uses: actions-rs/cargo@v1
with:
command: install
Expand All @@ -50,7 +50,7 @@ jobs:
get:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- uses: actions-rs/cargo@v1
with:
command: install
Expand All @@ -66,7 +66,7 @@ jobs:
get-anonymous:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- uses: actions-rs/cargo@v1
with:
command: install
Expand All @@ -81,7 +81,7 @@ jobs:
list:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- uses: actions-rs/cargo@v1
with:
command: install
Expand All @@ -108,7 +108,7 @@ jobs:
push:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- uses: actions-rs/cargo@v1
with:
command: install
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
Expand All @@ -24,7 +24,7 @@ jobs:
with-registry:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Setup registry
run: |
./test/fixture.sh
Expand All @@ -41,7 +41,7 @@ jobs:
check-format:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- uses: actions-rs/cargo@v1
with:
command: fmt
Expand All @@ -50,7 +50,7 @@ jobs:
clippy:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- uses: actions-rs/cargo@v1
with:
command: clippy

0 comments on commit 29323d6

Please sign in to comment.