From 0e5581a59c497e3e2f7a5b8f26dfa98ceabb87dd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Sep 2023 10:50:04 +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.yml | 8 ++++---- .github/workflows/codespell.yml | 2 +- .github/workflows/create_release.yml | 2 +- .github/workflows/lupdate.yml | 2 +- .github/workflows/post_release.yml | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8fce69a88..c411f947d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,7 +29,7 @@ jobs: steps: - name: Checkout Repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: true @@ -79,7 +79,7 @@ jobs: steps: - name: Checkout Repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: true @@ -126,7 +126,7 @@ jobs: steps: - name: Checkout Repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: true @@ -189,7 +189,7 @@ jobs: steps: - name: Checkout Repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Create Draft Release run: | diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml index 7251c8b7f..482596351 100644 --- a/.github/workflows/codespell.yml +++ b/.github/workflows/codespell.yml @@ -11,7 +11,7 @@ jobs: name: Check for spelling errors runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: codespell-project/actions-codespell@master with: diff --git a/.github/workflows/create_release.yml b/.github/workflows/create_release.yml index 43841d2ea..5423635a3 100644 --- a/.github/workflows/create_release.yml +++ b/.github/workflows/create_release.yml @@ -13,7 +13,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: token: ${{ secrets.CREATE_RELEASE_TOKEN }} diff --git a/.github/workflows/lupdate.yml b/.github/workflows/lupdate.yml index 13a58ccf3..bb66ce954 100644 --- a/.github/workflows/lupdate.yml +++ b/.github/workflows/lupdate.yml @@ -8,7 +8,7 @@ jobs: steps: - name: Checkout Repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: true diff --git a/.github/workflows/post_release.yml b/.github/workflows/post_release.yml index 7be534eb4..533db64bb 100644 --- a/.github/workflows/post_release.yml +++ b/.github/workflows/post_release.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - run: | gh issue create --title "Publish Windows Release for $RELEASE_TAG" --body "Update json file in root of project."