From 56cc9be183a8f667f1ea5b3f2947f786c9eec302 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 14 Apr 2022 19:14:36 +0000 Subject: [PATCH] build(deps): bump actions/checkout from 2 to 3.0.1 Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.0.1. - [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/v2...dcd71f646680f2efd8db4afa5ad64fdcba30e748) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/bootstrap.yml | 20 ++++++++++---------- .github/workflows/build-containers.yml | 2 +- .github/workflows/macos_python.yml | 6 +++--- .github/workflows/unit_tests.yaml | 16 ++++++++-------- 4 files changed, 22 insertions(+), 22 deletions(-) diff --git a/.github/workflows/bootstrap.yml b/.github/workflows/bootstrap.yml index ebfa93db192bd1..8ed70a8cbbdb0d 100644 --- a/.github/workflows/bootstrap.yml +++ b/.github/workflows/bootstrap.yml @@ -31,7 +31,7 @@ jobs: bzip2 curl file gcc-c++ gcc gcc-gfortran git gnupg2 gzip \ make patch unzip which xz python3 python3-devel tree \ cmake bison bison-devel libstdc++-static - - uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # @v2 + - uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 # @v2 - name: Setup repo and non-root user run: | git --version @@ -61,7 +61,7 @@ jobs: bzip2 curl file g++ gcc gfortran git gnupg2 gzip \ make patch unzip xz-utils python3 python3-dev tree \ cmake bison - - uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # @v2 + - uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 # @v2 - name: Setup repo and non-root user run: | git --version @@ -90,7 +90,7 @@ jobs: bzip2 curl file gcc-c++ gcc gcc-fortran tar git gpg2 gzip \ make patch unzip which xz python3 python3-devel tree \ cmake bison - - uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # @v2 + - uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 # @v2 - name: Setup repo and non-root user run: | git --version @@ -110,7 +110,7 @@ jobs: - name: Install dependencies run: | brew install cmake bison@2.7 tree - - uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # @v2 + - uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 # @v2 - name: Bootstrap clingo run: | source share/spack/setup-env.sh @@ -129,7 +129,7 @@ jobs: - name: Install dependencies run: | brew install tree - - uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # @v2 + - uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 # @v2 - uses: actions/setup-python@dc73133d4da04e56a135ae2246682783cc7c7cb6 # @v2 with: python-version: ${{ matrix.python-version }} @@ -146,7 +146,7 @@ jobs: matrix: python-version: ['2.7', '3.5', '3.6', '3.7', '3.8', '3.9'] steps: - - uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # @v2 + - uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 # @v2 - uses: actions/setup-python@dc73133d4da04e56a135ae2246682783cc7c7cb6 # @v2 with: python-version: ${{ matrix.python-version }} @@ -174,7 +174,7 @@ jobs: apt-get install -y \ bzip2 curl file g++ gcc patchelf gfortran git gzip \ make patch unzip xz-utils python3 python3-dev tree - - uses: actions/checkout@v2 + - uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 - name: Setup repo and non-root user run: | git --version @@ -203,7 +203,7 @@ jobs: bzip2 curl file g++ gcc patchelf gfortran git gzip \ make patch unzip xz-utils python3 python3-dev tree \ gawk - - uses: actions/checkout@v2 + - uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 - name: Setup repo and non-root user run: | git --version @@ -228,7 +228,7 @@ jobs: brew install tree # Remove GnuPG since we want to bootstrap it sudo rm -rf /usr/local/bin/gpg - - uses: actions/checkout@v2 + - uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 - name: Bootstrap GnuPG run: | source share/spack/setup-env.sh @@ -244,7 +244,7 @@ jobs: brew install gawk tree # Remove GnuPG since we want to bootstrap it sudo rm -rf /usr/local/bin/gpg - - uses: actions/checkout@v2 + - uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 - name: Bootstrap GnuPG run: | source share/spack/setup-env.sh diff --git a/.github/workflows/build-containers.yml b/.github/workflows/build-containers.yml index a55e0daa774f6c..7cf55f069864d4 100644 --- a/.github/workflows/build-containers.yml +++ b/.github/workflows/build-containers.yml @@ -36,7 +36,7 @@ jobs: name: Build ${{ matrix.dockerfile[0] }} steps: - name: Checkout - uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # @v2 + uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 # @v2 - name: Set Container Tag Normal (Nightly) run: | diff --git a/.github/workflows/macos_python.yml b/.github/workflows/macos_python.yml index c3ff5957b5b6e4..64896aeb810651 100644 --- a/.github/workflows/macos_python.yml +++ b/.github/workflows/macos_python.yml @@ -24,7 +24,7 @@ jobs: name: gcc with clang runs-on: macos-latest steps: - - uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # @v2 + - uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 # @v2 - uses: actions/setup-python@dc73133d4da04e56a135ae2246682783cc7c7cb6 # @v2 with: python-version: 3.9 @@ -39,7 +39,7 @@ jobs: runs-on: macos-latest timeout-minutes: 700 steps: - - uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # @v2 + - uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 # @v2 - uses: actions/setup-python@dc73133d4da04e56a135ae2246682783cc7c7cb6 # @v2 with: python-version: 3.9 @@ -52,7 +52,7 @@ jobs: name: scipy, mpl, pd runs-on: macos-latest steps: - - uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # @v2 + - uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 # @v2 - uses: actions/setup-python@dc73133d4da04e56a135ae2246682783cc7c7cb6 # @v2 with: python-version: 3.9 diff --git a/.github/workflows/unit_tests.yaml b/.github/workflows/unit_tests.yaml index 35722b9137e4e7..9372d401e11b13 100644 --- a/.github/workflows/unit_tests.yaml +++ b/.github/workflows/unit_tests.yaml @@ -15,7 +15,7 @@ jobs: validate: runs-on: ubuntu-latest steps: - - uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # @v2 + - uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 # @v2 - uses: actions/setup-python@dc73133d4da04e56a135ae2246682783cc7c7cb6 # @v2 with: python-version: 3.9 @@ -31,7 +31,7 @@ jobs: style: runs-on: ubuntu-latest steps: - - uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # @v2 + - uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 # @v2 with: fetch-depth: 0 - uses: actions/setup-python@dc73133d4da04e56a135ae2246682783cc7c7cb6 # @v2 @@ -57,7 +57,7 @@ jobs: packages: ${{ steps.filter.outputs.packages }} with_coverage: ${{ steps.coverage.outputs.with_coverage }} steps: - - uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # @v2 + - uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 # @v2 if: ${{ github.event_name == 'push' }} with: fetch-depth: 0 @@ -99,7 +99,7 @@ jobs: python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9] concretizer: ['original', 'clingo'] steps: - - uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # @v2 + - uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 # @v2 with: fetch-depth: 0 - uses: actions/setup-python@dc73133d4da04e56a135ae2246682783cc7c7cb6 # @v2 @@ -160,7 +160,7 @@ jobs: needs: [ validate, style, changes ] runs-on: ubuntu-latest steps: - - uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # @v2 + - uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 # @v2 with: fetch-depth: 0 - uses: actions/setup-python@dc73133d4da04e56a135ae2246682783cc7c7cb6 # @v2 @@ -238,7 +238,7 @@ jobs: dnf install -y \ bzip2 curl file gcc-c++ gcc gcc-gfortran git gnupg2 gzip \ make patch tcl unzip which xz - - uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # @v2 + - uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 # @v2 - name: Setup repo and non-root user run: | git --version @@ -257,7 +257,7 @@ jobs: needs: [ validate, style, changes ] runs-on: ubuntu-latest steps: - - uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # @v2 + - uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 # @v2 with: fetch-depth: 0 - uses: actions/setup-python@dc73133d4da04e56a135ae2246682783cc7c7cb6 # @v2 @@ -306,7 +306,7 @@ jobs: matrix: python-version: [3.8] steps: - - uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # @v2 + - uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 # @v2 with: fetch-depth: 0 - uses: actions/setup-python@dc73133d4da04e56a135ae2246682783cc7c7cb6 # @v2