Skip to content

Commit

Permalink
build(deps): bump actions/checkout from 2 to 3
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v2...v3)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Aug 11, 2023
1 parent 8995d22 commit 38dfe70
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/book.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-20.04
name: build
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
Expand All @@ -37,7 +37,7 @@ jobs:
codespell:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: codespell-project/actions-codespell@master
with:
check_filenames: true
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

steps:
- name: Acquire source code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Acquire Rust toolchain
uses: actions-rs/toolchain@v1
with:
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:

steps:
- name: Acquire source code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Acquire Rust toolchain
uses: actions-rs/toolchain@v1
with:
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
run: pacman --noconfirm -S mingw-w64-${{ matrix.arch }}-gtk3 mingw-w64-${{ matrix.arch }}-libgit2
if: matrix.os == 'windows-latest'
- name: "Acquire gir-files"
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: gtk-rs/gir-files
ref: master
Expand All @@ -157,7 +157,7 @@ jobs:
cargo build && cargo build --features v3_20
if: matrix.os == 'windows-latest'
- name: "Acquire gtk3-rs"
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: gtk-rs/gtk3-rs
ref: master
Expand All @@ -171,7 +171,7 @@ jobs:
run: cd gtk3-rs && python3 generator.py --no-fmt --gir-path ../target/release/gir --gir-files-directories ../tests/gir-files/ && rm ../Cargo.* && cargo build
if: matrix.os == 'ubuntu-20.04'
- name: "Acquire gtk-rs-core"
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: gtk-rs/gtk-rs-core
ref: master
Expand Down

0 comments on commit 38dfe70

Please sign in to comment.