Skip to content
Open
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
18 changes: 9 additions & 9 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
attestations: write
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: hynek/build-and-inspect-python-package@v2
Expand All @@ -58,7 +58,7 @@ jobs:

steps:
- name: Fetch repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Install the latest version of uv
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
echo "RELEASE_VERSION=v3.7.1" >> $GITHUB_ENV
echo "NO_ET=TRUE" >> $GITHUB_ENV
- name: Setup Singularity
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: hpcng/singularity
ref: 'v3.7.1'
Expand All @@ -122,7 +122,7 @@ jobs:
run: |
echo ${{ github.ref }}
singularity --version
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Install the latest version of uv
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:
steps:
- name: Disable etelemetry
run: echo "NO_ET=TRUE" >> $GITHUB_ENV
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Pull docker image
Expand Down Expand Up @@ -204,7 +204,7 @@ jobs:
# steps:
# - name: Disable etelemetry
# run: echo "NO_ET=TRUE" >> $GITHUB_ENV
# - uses: actions/checkout@v4
# - uses: actions/checkout@v5
# - name: Fetch tags
# run: git fetch --prune --unshallow
# - name: Set up Python ${{ matrix.python-version }}
Expand Down Expand Up @@ -307,7 +307,7 @@ jobs:
ps aux | grep xfce4-notifyd
dbus-monitor --session &
sleep 3
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Install Minconda
Expand Down Expand Up @@ -346,7 +346,7 @@ jobs:
id-token: write
steps:
- name: Download dist
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: Packages
path: dist
Expand All @@ -359,7 +359,7 @@ jobs:
if: github.event_name == 'release'
steps:
- name: Download docs
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: docs
path: docs-build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')"
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Prepare repository
# Fetch full git history and tags
Expand Down
Loading