From 7e7e19c584d543105817bccd882549298ffd8f58 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 21 Mar 2024 01:11:40 +0000 Subject: [PATCH] :arrow_up: Actions: Bump actions/checkout from 2 to 4 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] --- .github/workflows/package.yml | 2 +- .github/workflows/update-settings.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml index 50c54c7..a5a9425 100644 --- a/.github/workflows/package.yml +++ b/.github/workflows/package.yml @@ -10,7 +10,7 @@ jobs: name: Publish to NuGet.org runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: nuget/setup-nuget@v1 with: diff --git a/.github/workflows/update-settings.yml b/.github/workflows/update-settings.yml index 3ed6c4b..65c5513 100644 --- a/.github/workflows/update-settings.yml +++ b/.github/workflows/update-settings.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # If this is a PR, dry-run the PR and watch for errors - name: Dry-run settings in the PR @@ -30,7 +30,7 @@ jobs: # Explicitly checkout main branch to ensure production settings are reset - name: Switch to main for production settings if: github.event_name == 'pull_request' - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: main