From 38dfe705632d61e7af523159453a08018b5ad2ec Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 11 Aug 2023 09:57:21 +0000 Subject: [PATCH] build(deps): bump actions/checkout from 2 to 3 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](https://github.com/actions/checkout/compare/v2...v3) --- 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/main.yaml | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/book.yml b/.github/workflows/book.yml index 67eca3f00..5c299e8d4 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@v2 + - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 with: profile: minimal @@ -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 diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 14b8b7a5e..416794543 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -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: @@ -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: @@ -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 @@ -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 @@ -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