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
6 changes: 3 additions & 3 deletions .github/workflows/branch-cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,19 +37,19 @@ jobs:
steps:
-
name: 💳 Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
lfs: true
fetch-depth: 0
token: ${{secrets.ADMIN_GITHUB_TOKEN}}
-
name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
-
name: 💵 Python Cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.cache/pip
# The "key" used to indicate a set of cached files is the operating system runner
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ jobs:

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

- name: Setup python 3.13
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: 3.13

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/stable-cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,14 @@ jobs:
steps:
-
name: 💳 Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
lfs: true
token: ${{secrets.ADMIN_GITHUB_TOKEN}}
fetch-depth: 0
-
name: 💵 Python Cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.cache/pip
# The "key" used to indicate a set of cached files is the operating system runner
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/unstable-cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,14 @@ jobs:
steps:
-
name: 💳 Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
lfs: true
fetch-depth: 0
token: ${{secrets.ADMIN_GITHUB_TOKEN}}
-
name: 💵 Python Cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.cache/pip
# The "key" used to indicate a set of cached files is the operating system runner
Expand All @@ -81,7 +81,7 @@ jobs:
DATACITE_PASSWORD: ${{secrets.DATACITE_PASSWORD}}
-
name: 🛏️ Upload Coverage
uses: SonarSource/sonarqube-scan-action@v7
uses: SonarSource/sonarqube-scan-action@v8
env:
SONAR_TOKEN: ${{secrets.SONAR_TOKEN}}

Expand Down
Loading