From 317bfe17e1dc6d61ad13f907871269f52a9751ba Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 28 Sep 2024 03:41:02 -0700 Subject: [PATCH] build(deps): bump actions/checkout from 2 to 4 (#47) Bumps [actions/checkout](https://github.com/actions/checkout) from 2 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/v2...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/crowdin.yml | 2 +- .github/workflows/php.yml | 2 +- .github/workflows/release-please.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/crowdin.yml b/.github/workflows/crowdin.yml index 1c190f8..39136d3 100644 --- a/.github/workflows/crowdin.yml +++ b/.github/workflows/crowdin.yml @@ -5,7 +5,7 @@ jobs: crowdin: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: crowdin/github-action@1.5.1 with: download_translations: true diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 4a67bed..807814a 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -9,7 +9,7 @@ jobs: env: XDEBUG_MODE: coverage steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Cache Composer packages id: composer-cache uses: actions/cache@v2 diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 90f371e..ac68f50 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -18,7 +18,7 @@ jobs: release-type: php draft: true package-name: ${{ env.MOD_NAME }} - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: ${{ fromJson(steps.release.outputs.pr).headBranchName }} if: ${{ steps.release.outputs.pr && !steps.release.outputs.release_created }} @@ -41,7 +41,7 @@ jobs: git config user.email 41898282+github-actions[bot]@users.noreply.github.com git commit -am "build: Update versions in mod files" git push - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 if: ${{ steps.release.outputs.release_created }} - run: tar -czvf myfile.tgz LICENSE README.md -C src $(ls src) if: ${{ steps.release.outputs.release_created }}