diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml index 764ef8a2bc..c4329ad51c 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/build-docs.yml @@ -20,14 +20,14 @@ jobs: run: shell: bash -l {0} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 # Install dependencies - name: Setup Conda Environment uses: mamba-org/setup-micromamba@v1 with: environment-file: docs/environment_docs.yml - activate-environment: act-docs + environment-name: act-docs cache-downloads: true - name: Install ACT diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 61314372eb..c2fb38c867 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -42,7 +42,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/python-package-conda.yml b/.github/workflows/python-package-conda.yml index 56c36a2f43..da39f1a29e 100644 --- a/.github/workflows/python-package-conda.yml +++ b/.github/workflows/python-package-conda.yml @@ -38,14 +38,14 @@ jobs: platform: [x64] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Setup Conda Environment uses: mamba-org/setup-micromamba@v1 with: python-version: ${{ matrix.python-version }} environment-file: ./continuous_integration/environment_actions.yml - activate-environment: act_env + environment-name: act_env - name: Install ACT run: |