From 8536ba28d09b5b4e159f2117e22c070f995cb6d2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Apr 2024 09:12:16 +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/build-canary.yml | 2 +- .github/workflows/build-debug.yml | 6 +++--- .github/workflows/build-docs.yml | 4 ++-- .github/workflows/build-release.yml | 4 ++-- .../workflows/build-update-sourcegenerator-for-unity.yml | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build-canary.yml b/.github/workflows/build-canary.yml index a570015b0..cbac18dd8 100644 --- a/.github/workflows/build-canary.yml +++ b/.github/workflows/build-canary.yml @@ -22,7 +22,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: Cysharp/Actions/.github/actions/setup-dotnet@main - run: echo "MAGICONION_VERSION=ci-$(date '+%Y%m%d-%H%M%S')+${GITHUB_SHA:0:6}" >> $GITHUB_ENV - run: echo "MAGICONION_VERSION=${MAGICONION_VERSION}" diff --git a/.github/workflows/build-debug.yml b/.github/workflows/build-debug.yml index eeba2d4af..bac987a36 100644 --- a/.github/workflows/build-debug.yml +++ b/.github/workflows/build-debug.yml @@ -27,7 +27,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: Cysharp/Actions/.github/actions/setup-dotnet@main - run: dotnet build -c ${{ env.BUILD_CONFIG }} ./MagicOnion.sln @@ -36,7 +36,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: Cysharp/Actions/.github/actions/setup-dotnet@main - run: dotnet test -c Debug MagicOnion.sln - run: dotnet test -c Release MagicOnion.sln @@ -61,7 +61,7 @@ jobs: UNITY_PASSWORD: "op://GitHubActionsPublic/UNITY_LICENSE/credential" UNITY_SERIAL: "op://GitHubActionsPublic/UNITY_LICENSE/serial" - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # todo: prepare runtime unit test # Execute scripts: RuntimeUnitTestToolkit diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml index c3aa5fce2..d064836e1 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/build-docs.yml @@ -9,8 +9,8 @@ jobs: run-docfx: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 + - uses: actions/checkout@v4 with: repository: Cysharp/DocfxTemplate path: docs/_DocfxTemplate diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index ef4a76d46..6c22bae50 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -29,7 +29,7 @@ jobs: timeout-minutes: 10 steps: - run: echo ${{ needs.update-packagejson.outputs.sha }} - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: ${{ needs.update-packagejson.outputs.sha }} - uses: Cysharp/Actions/.github/actions/setup-dotnet@main @@ -61,7 +61,7 @@ jobs: UNITY_PASSWORD: "op://GitHubActionsPublic/UNITY_LICENSE/credential" UNITY_SERIAL: "op://GitHubActionsPublic/UNITY_LICENSE/serial" - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: ${{ needs.update-packagejson.outputs.sha }} # execute scripts/Export Package diff --git a/.github/workflows/build-update-sourcegenerator-for-unity.yml b/.github/workflows/build-update-sourcegenerator-for-unity.yml index cad26c3cf..c757bf81c 100644 --- a/.github/workflows/build-update-sourcegenerator-for-unity.yml +++ b/.github/workflows/build-update-sourcegenerator-for-unity.yml @@ -26,7 +26,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: Cysharp/Actions/.github/actions/setup-dotnet@main - name: Publish MagicOnion.Client.SourceGenerator.Unity run: dotnet publish -c ${{ env.BUILD_CONFIG }} ./src/MagicOnion.Client.SourceGenerator.Unity -o ./src/MagicOnion.Client.Unity/Assets/Scripts/MagicOnion/MagicOnion.Client/MagicOnion.Client.SourceGenerator.Unity