Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump actions/checkout from 3 to 4 #1511

Merged
merged 1 commit into from
Sep 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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@v3
- uses: actions/checkout@v4
- 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@v3
- uses: actions/checkout@v4
- uses: codespell-project/actions-codespell@master
with:
check_filenames: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
build-deploy:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
profile: minimal
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@v3
uses: actions/checkout@v4
- 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@v3
uses: actions/checkout@v4
- 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@v3
uses: actions/checkout@v4
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@v3
uses: actions/checkout@v4
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@v3
uses: actions/checkout@v4
with:
repository: gtk-rs/gtk-rs-core
ref: master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/typos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Actions Repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Check spelling
uses: crate-ci/typos@master
Loading