From 3dafbad82363f735d66aee7b080f4ec35643e058 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 5 Sep 2023 05:08:58 +0000 Subject: [PATCH] Update actions/checkout action to v4 --- .github/workflows/DataScience.yml | 2 +- .github/workflows/docker.yml | 2 +- .github/workflows/secrets-scan.yml | 2 +- .github/workflows/semgrep.yml | 8 ++++---- .github/workflows/test.yml | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/DataScience.yml b/.github/workflows/DataScience.yml index cd8f187b..8150dbd0 100644 --- a/.github/workflows/DataScience.yml +++ b/.github/workflows/DataScience.yml @@ -10,7 +10,7 @@ jobs: # Plan for newer Python versions python-version: ["3.8"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 06faf23d..441d1bc9 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - name: Get the version diff --git a/.github/workflows/secrets-scan.yml b/.github/workflows/secrets-scan.yml index 71a64676..ab9198a1 100644 --- a/.github/workflows/secrets-scan.yml +++ b/.github/workflows/secrets-scan.yml @@ -6,7 +6,7 @@ jobs: scan: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: scan run: | export DEBIAN_FRONTEND=noninteractive && \ diff --git a/.github/workflows/semgrep.yml b/.github/workflows/semgrep.yml index 9d014ae6..d9c36e8a 100644 --- a/.github/workflows/semgrep.yml +++ b/.github/workflows/semgrep.yml @@ -11,7 +11,7 @@ jobs: docker_scan: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: repository: ${{ github.event.pull_request.head.repo.full_name }} ref: ${{ github.event.pull_request.head.ref }} @@ -56,7 +56,7 @@ jobs: python_scan: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: repository: ${{ github.event.pull_request.head.repo.full_name }} ref: ${{ github.event.pull_request.head.ref }} @@ -102,7 +102,7 @@ jobs: c_scan: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: repository: ${{ github.event.pull_request.head.repo.full_name }} ref: ${{ github.event.pull_request.head.ref }} @@ -148,7 +148,7 @@ jobs: javascript_scan: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: repository: ${{ github.event.pull_request.head.repo.full_name }} ref: ${{ github.event.pull_request.head.ref }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 82294e9d..320a1a7b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,7 +4,7 @@ jobs: shelltest: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: shell_test run: | wget "https://github.com/koalaman/shellcheck/releases/download/stable/shellcheck-stable.linux.x86_64.tar.xz" && \ @@ -16,7 +16,7 @@ jobs: unittests: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: sleepypid_test run: | sudo apt-get update && sudo apt-get install -f python3-dev && \