Skip to content

Commit

Permalink
FIX: Upgrade various actions and ensure proper env name is set
Browse files Browse the repository at this point in the history
  • Loading branch information
mgrover1 committed Sep 14, 2023
1 parent b3e46d9 commit 5aafda1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-package-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit 5aafda1

Please sign in to comment.