From e988b74e1dd537b574cf354fb6dc621b83c72b08 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 27 Oct 2023 11:43:52 +0200 Subject: [PATCH] Bump actions/checkout from 3 to 4 (#866) 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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/pre-commit-updater.yml | 2 +- .github/workflows/release.yml | 4 ++-- .github/workflows/test.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pre-commit-updater.yml b/.github/workflows/pre-commit-updater.yml index 5003f1ae..7917279e 100644 --- a/.github/workflows/pre-commit-updater.yml +++ b/.github/workflows/pre-commit-updater.yml @@ -6,7 +6,7 @@ jobs: auto-update: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v4.7.0 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8f03fb0a..1e17f28e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: outputs: version: ${{ steps.vars.outputs.tag }} steps: - - uses: actions/checkout@v3.5.3 + - uses: actions/checkout@v4 - name: Get tag id: vars run: echo "tag=${GITHUB_REF#refs/*/}" >> $GITHUB_OUTPUT @@ -54,7 +54,7 @@ jobs: - name: Sleep for 60 seconds (to prevent race condition with the pypi upload) run: sleep 60s shell: bash - - uses: actions/checkout@v3.5.3 + - uses: actions/checkout@v4 - name: Log in to the GitHub container registry uses: docker/login-action@v3.0.0 with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8e52e2ac..7c7cbcad 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,7 +16,7 @@ jobs: steps: - name: Check out code from GitHub - uses: actions/checkout@v3.5.3 + uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v4.7.0 with: @@ -41,7 +41,7 @@ jobs: steps: - name: Check out code from GitHub - uses: actions/checkout@v3.5.3 + uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4.7.0 with: -- 2.34.1