Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
16 changes: 8 additions & 8 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: nextstrain/.github/actions/shellcheck@master

test-source:
Expand All @@ -46,7 +46,7 @@ jobs:
run:
shell: bash
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python }}
Expand All @@ -59,7 +59,7 @@ jobs:
build-dist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: actions/setup-python@v6
with:
python-version: "3.10"
Expand Down Expand Up @@ -132,7 +132,7 @@ jobs:
python-version: "3.10"

# Build the executable + necessary external files from the dists.
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: actions/download-artifact@v8
with:
name: dist
Expand Down Expand Up @@ -264,7 +264,7 @@ jobs:
# activation of "test" environment.
shell: bash -l -eo pipefail {0}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
path: src/

Expand Down Expand Up @@ -321,7 +321,7 @@ jobs:
# activation of "test" environment.
shell: bash -l -eo pipefail {0}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
path: src/

Expand Down Expand Up @@ -359,9 +359,9 @@ jobs:
- lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

# In actions/checkout@v6 above, annotated tags are intentionally
# In actions/checkout@v7 above, annotated tags are intentionally
# **overwritten** and converted to a lightweight tag. Forcibly restore
# the annotated tag object from the remote so we can verify/use it later.
- run: git fetch --force origin tag "$GITHUB_REF_NAME"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/standalone-installers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:

runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

# Use pipes like are used in the real instructions when the installer is
# fetched from nextstrain.org. This tests that the shell programs work
Expand Down
Loading