From 4af65b8c62a41e33179f87c7e1fe8ed6d2a8a571 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Sep 2023 11:25:27 +0000 Subject: [PATCH] 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/auto_formatter.yml | 2 +- .github/workflows/build.yml | 6 +++--- .github/workflows/development.yml | 2 +- .github/workflows/generate_docs.yml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/auto_formatter.yml b/.github/workflows/auto_formatter.yml index 2312a89b4..9b8a26622 100644 --- a/.github/workflows/auto_formatter.yml +++ b/.github/workflows/auto_formatter.yml @@ -13,7 +13,7 @@ jobs: - name: Install Clang format run: | sudo apt install clang-format - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-python@v4 with: python-version: '3.10' diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 37f7cb698..08cd5ad2e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,7 +16,7 @@ jobs: SM_JSON_INC_PATH: get5/dependencies/sm-json/addons/sourcemod/scripting/include STEAMWORKS_URL: https://raw.githubusercontent.com/hexa-core-eu/SteamWorks/main/Pawn/includes/SteamWorks.inc steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: path: 'get5' submodules: true @@ -77,7 +77,7 @@ jobs: if: github.ref == 'refs/heads/development' runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/download-artifact@v3 with: name: ${{ needs.build.outputs.filename }} @@ -117,7 +117,7 @@ jobs: if: github.ref == 'refs/heads/master' runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Generate changelog id: changelog diff --git a/.github/workflows/development.yml b/.github/workflows/development.yml index 3defdb132..a01d1624c 100644 --- a/.github/workflows/development.yml +++ b/.github/workflows/development.yml @@ -17,7 +17,7 @@ jobs: SM_JSON_INC_PATH: get5/dependencies/sm-json/addons/sourcemod/scripting/include STEAMWORKS_URL: https://raw.githubusercontent.com/hexa-core-eu/SteamWorks/main/Pawn/includes/SteamWorks.inc steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: path: 'get5' submodules: true diff --git a/.github/workflows/generate_docs.yml b/.github/workflows/generate_docs.yml index 6825dbb28..a91f43f34 100644 --- a/.github/workflows/generate_docs.yml +++ b/.github/workflows/generate_docs.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout main - uses: actions/checkout@v3 + uses: actions/checkout@v4 - uses: actions/setup-python@v4 with: python-version: '3.10'