Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/brew.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:
# v1 required due to permissions error
- name: Checkout mamba repository
uses: actions/checkout@v1
uses: actions/checkout@v6

- name: Correct the creation permissions
run: sudo chown -R linuxbrew .
Expand All @@ -33,7 +33,7 @@ jobs:

steps:
- name: Checkout mamba repository
uses: actions/checkout@v4
uses: actions/checkout@v6

# Note: cmake already installed from a local Github tap
# Attempting to install it from homebrew/core creates a conflict without more handling
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout mamba repository
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Create build environment
uses: mamba-org/setup-micromamba@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/label_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Wait for bot to set label
run: sleep 10
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
env:
PRE_COMMIT_USE_MICROMAMBA: 1
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Install pre-commit and identify
uses: mamba-org/setup-micromamba@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/set_pr_label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Assign label based on PR title
uses: actions/github-script@v8
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/static_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- { os: macos-latest, platform: osx, arch: arm64 }
steps:
- name: Checkout micromamba-feedstock
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: conda-forge/micromamba-feedstock
path: micromamba-feedstock
Expand All @@ -57,7 +57,7 @@ jobs:
sed -i 's| - libcurl >=8\.4\.0[[:space:]]*# \[unix\]| - libcurl >=8.4,<8.15 #[unix]|' meta.yaml
sed -i 's| - libcurl-static >=8\.4\.0[[:space:]]*# \[unix\]| - libcurl-static >=8.4,<8.15 #[unix]|' meta.yaml
- name: Checkout mamba branch
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
path: mamba
- name: Clear mamba git directory and link source
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
name: "win-64"
runs-on: windows-2022
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Cache vcpkg packages
uses: actions/cache@v4
with:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/unix_impl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ${{ inputs.os }}
steps:
- name: Checkout mamba repository
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Create build environment
uses: mamba-org/setup-micromamba@v2
with:
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
runs-on: ${{ inputs.os }}
steps:
- name: Checkout mamba repository
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Restore workspace
uses: ./.github/actions/workspace
with:
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
runs-on: ${{ inputs.os }}
steps:
- name: Checkout mamba repository
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Restore workspace
uses: ./.github/actions/workspace
with:
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
runs-on: ${{ inputs.os }}
steps:
- name: Checkout mamba repository
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Restore workspace
uses: ./.github/actions/workspace
with:
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
if: startsWith(inputs.os, 'ubuntu')
steps:
- name: Checkout mamba repository
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Restore workspace
uses: ./.github/actions/workspace
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/windows_impl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ${{ inputs.os }}
steps:
- name: Checkout mamba repository
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Create build environment
uses: mamba-org/setup-micromamba@v2
with:
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
runs-on: ${{ inputs.os }}
steps:
- name: Checkout mamba repository
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Restore workspace
uses: ./.github/actions/workspace
with:
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
runs-on: ${{ inputs.os }}
steps:
- name: Checkout mamba repository
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Restore workspace
uses: ./.github/actions/workspace
with:
Expand Down Expand Up @@ -132,7 +132,7 @@ jobs:
runs-on: ${{ inputs.os }}
steps:
- name: Checkout mamba repository
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Restore workspace
uses: ./.github/actions/workspace
with:
Expand Down
Loading