Skip to content
Closed
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
10 changes: 5 additions & 5 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,16 @@ 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

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
uses: github/codeql-action/init@v4.37.3
with:
languages: ${{ matrix.language }}
queries: security-and-quality, security-extended
Expand All @@ -60,7 +60,7 @@ jobs:
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v4
uses: github/codeql-action/autobuild@v4.37.3

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
Expand All @@ -74,7 +74,7 @@ jobs:
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4
uses: github/codeql-action/analyze@v4.37.3

- run: |
pip3 install nasa-scrub
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