From 4680f15bdb9e31df30e461d8b832c5fdb84f3380 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Sep 2023 05:04:12 +0000 Subject: [PATCH] build(deps): bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/book.yml | 4 ++-- .github/workflows/docs.yml | 2 +- .github/workflows/main.yaml | 10 +++++----- .github/workflows/typos.yaml | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/book.yml b/.github/workflows/book.yml index 5c299e8d4..d8edad6f8 100644 --- a/.github/workflows/book.yml +++ b/.github/workflows/book.yml @@ -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 @@ -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 diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 6b7894261..f1217d567 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -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 diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 7eafefd28..6aff78415 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -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: @@ -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: @@ -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 @@ -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 @@ -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 diff --git a/.github/workflows/typos.yaml b/.github/workflows/typos.yaml index 3c7f20c45..74d258d93 100644 --- a/.github/workflows/typos.yaml +++ b/.github/workflows/typos.yaml @@ -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