From 055da968a71ac562f5e4d64f7d08db46176eb884 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 14 Sep 2023 18:12:12 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v4 --- .github/workflows/main.yml | 4 ++-- .github/workflows/prevent-commit-to-generated.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7d5ad0d1..c7e3e232 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -23,7 +23,7 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # https://docs.github.com/en/free-pro-team@latest/actions/guides/caching-dependencies-to-speed-up-workflows - name: Reuse npm cache folder @@ -91,7 +91,7 @@ jobs: matrix: node: ['17.3.0', '18.12.1'] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Setup Node.js environment uses: actions/setup-node@v3.8.1 with: diff --git a/.github/workflows/prevent-commit-to-generated.yml b/.github/workflows/prevent-commit-to-generated.yml index bf06bc12..97a0061e 100644 --- a/.github/workflows/prevent-commit-to-generated.yml +++ b/.github/workflows/prevent-commit-to-generated.yml @@ -10,6 +10,6 @@ jobs: warn-user: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Warn User to not commit generated files run: bash -c 'echo "You have commited generated files (from the dist folder), this is not allowed. You can only commit files that you have manually edited" && exit 1'