From 203035aeb111f02205154829fe5068b67118a7b1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Sep 2023 22:43:17 +0000 Subject: [PATCH] fix(deps): bump actions/checkout from 3 to 4 (#968) 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/ci.yml | 4 ++-- .github/workflows/codeql.yml | 2 +- .github/workflows/ct.yml | 4 ++-- .github/workflows/release.yml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fd956ae..6cce7ff 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,11 +13,11 @@ jobs: steps: - name: Check out repository ✨ (non-dependabot) if: ${{ github.actor != 'dependabot[bot]' }} - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Check out repository 🎉 (dependabot) if: ${{ github.actor == 'dependabot[bot]' }} - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.head.sha }} diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index d4df176..8d72d20 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -23,7 +23,7 @@ jobs: language: [javascript] steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize CodeQL uses: github/codeql-action/init@v2 with: diff --git a/.github/workflows/ct.yml b/.github/workflows/ct.yml index dcdd9c3..c5fa5b1 100644 --- a/.github/workflows/ct.yml +++ b/.github/workflows/ct.yml @@ -13,11 +13,11 @@ jobs: steps: - name: Check out repository ✨ (non-dependabot) if: ${{ github.actor != 'dependabot[bot]' }} - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Check out repository 🎉 (dependabot) if: ${{ github.actor == 'dependabot[bot]' }} - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.head.sha }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e536463..33487b3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-20.04 steps: - name: Check out repository ✨ - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Update apt-get 🚀 run: sudo apt-get update -qq