From 6707cebb1a254a89d89d0785426ca8690252b4b6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Sep 2023 07:13:28 +0000 Subject: [PATCH] Bump actions/checkout from 1 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 1 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/v1...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/main.yml | 10 +++++----- .github/workflows/pr_checks.yml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index caa35c6..e2ef3ed 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -25,7 +25,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 15 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Setup Python environment uses: ./.github/actions/setup-venv @@ -57,7 +57,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 15 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Setup Python environment uses: ./.github/actions/setup-venv @@ -155,7 +155,7 @@ jobs: cd docs && make html steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Determine current commit SHA (pull request) if: github.event_name == 'pull_request' @@ -200,7 +200,7 @@ jobs: env: image: ghcr.io/allenai/beaker-py steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Log in to ghcr.io run: | @@ -241,7 +241,7 @@ jobs: needs: [checks, docker] if: startsWith(github.ref, 'refs/tags/') steps: - - uses: actions/checkout@v1 # needs v1 for now + - uses: actions/checkout@v4 # needs v1 for now - name: Log in to ghcr.io run: | diff --git a/.github/workflows/pr_checks.yml b/.github/workflows/pr_checks.yml index c8eee1b..5f6672f 100644 --- a/.github/workflows/pr_checks.yml +++ b/.github/workflows/pr_checks.yml @@ -18,7 +18,7 @@ jobs: if: github.event_name == 'pull_request' steps: - - uses: actions/checkout@v1 # needs v1 for now + - uses: actions/checkout@v4 # needs v1 for now - name: Check that CHANGELOG has been updated run: |