From 72d105cdccf9a9ab57203d04f5602bce5fcefd63 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 12 May 2024 13:47:00 +0000 Subject: [PATCH] Bump the github-actions group with 3 updates Bumps the github-actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [microsoft/setup-msbuild](https://github.com/microsoft/setup-msbuild) and [crazy-max/ghaction-import-gpg](https://github.com/crazy-max/ghaction-import-gpg). Updates `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) Updates `microsoft/setup-msbuild` from 1.1 to 1.3 - [Release notes](https://github.com/microsoft/setup-msbuild/releases) - [Changelog](https://github.com/microsoft/setup-msbuild/blob/main/building-release.md) - [Commits](https://github.com/microsoft/setup-msbuild/compare/v1.1...v1.3) Updates `crazy-max/ghaction-import-gpg` from 5 to 6 - [Release notes](https://github.com/crazy-max/ghaction-import-gpg/releases) - [Commits](https://github.com/crazy-max/ghaction-import-gpg/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: microsoft/setup-msbuild dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: crazy-max/ghaction-import-gpg dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yaml | 8 ++++---- .github/workflows/release.yaml | 2 +- .github/workflows/update-dependencies.yaml | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index fd3d5a4..f6a5b01 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -6,7 +6,7 @@ jobs: Linux: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: true - name: Get dependencies @@ -17,17 +17,17 @@ jobs: Windows: runs-on: windows-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: true - name: Set MSBuild env - uses: microsoft/setup-msbuild@v1.1 + uses: microsoft/setup-msbuild@v1.3 - name: Build for engine run: "bash ci.sh" MacOS: runs-on: macos-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: true - name: Build diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 50e85dc..02a03ec 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: lfs: true submodules: true diff --git a/.github/workflows/update-dependencies.yaml b/.github/workflows/update-dependencies.yaml index 3c6b2af..9380d2b 100644 --- a/.github/workflows/update-dependencies.yaml +++ b/.github/workflows/update-dependencies.yaml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: checking out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: master token: ${{ secrets.GITHUB_TOKEN }} @@ -23,7 +23,7 @@ jobs: #persist-credentials: false - name: "Import bot's GPG key for signing commits" id: import-gpg - uses: crazy-max/ghaction-import-gpg@v5 + uses: crazy-max/ghaction-import-gpg@v6 with: gpg_private_key: ${{ secrets.ACTION_COMMIT_SING_PRIVATE_KEY }} passphrase: ${{ secrets.ACTION_COMMIT_SING_PASS }}