Skip to content

Commit 4334fab

Browse files
authored
chore <hotfix>: package updates and action version increases (#59)
Signed-off-by: Raoul Linnenbank <[email protected]>
1 parent d22a13d commit 4334fab

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/gh-pages-deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515
deploy-gh-pages:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919
- name: Configure Git user
2020
run: |
2121
git config user.name github-actions[bot]
2222
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
23-
- uses: actions/setup-python@v5
23+
- uses: actions/setup-python@v6
2424
with:
2525
python-version: ${{ env.MAIN_PYTHON_VERSION }}
2626
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV

.github/workflows/openssf-scorecard.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ jobs:
3434

3535
steps:
3636
- name: "Checkout code"
37-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
37+
uses: actions/checkout@v5
3838
with:
3939
persist-credentials: false
4040

4141
- name: "Run analysis"
42-
uses: ossf/scorecard-action@f49aabe0b5af0936a0987cfb85d86b75731b0186 # v2.4.1
42+
uses: ossf/scorecard-action@4eaacf0543bb3f2c246792bd56e8cdeffafb205a # v2.4.3
4343
with:
4444
results_file: results.sarif
4545
results_format: sarif
@@ -64,7 +64,7 @@ jobs:
6464
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
6565
# format to the repository Actions tab.
6666
- name: "Upload artifact"
67-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
67+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
6868
with:
6969
name: SARIF file
7070
path: results.sarif
@@ -73,6 +73,6 @@ jobs:
7373
# Upload the results to GitHub's code scanning dashboard (optional).
7474
# Commenting out will disable upload of results to your repo's Code Scanning dashboard
7575
- name: "Upload to code-scanning"
76-
uses: github/codeql-action/upload-sarif@v3
76+
uses: github/codeql-action/upload-sarif@v4
7777
with:
7878
sarif_file: results.sarif

.github/workflows/pr-quality-gate.yaml.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
if: ${{ !github.event.pull_request.draft }}
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
# NOTE: point "uses:" to the DIRECTORY that contains action.yaml
2424
# If your composite is at ./pre-commit/action.yaml, use "./pre-commit"
2525
- name: Run pre-commit composite
@@ -35,7 +35,7 @@ jobs:
3535
matrix:
3636
python-version: ${{ fromJSON(env.SUPPORTED_PYTHON_VERSIONS) }}
3737
steps:
38-
- uses: actions/checkout@v4
38+
- uses: actions/checkout@v5
3939
- name: Run pytest composite
4040
uses: ./.github/workflows/pytest
4141
with:
@@ -50,7 +50,7 @@ jobs:
5050
matrix:
5151
python-version: ${{ fromJSON(env.SUPPORTED_PYTHON_VERSIONS) }}
5252
steps:
53-
- uses: actions/checkout@v4
53+
- uses: actions/checkout@v5
5454
- name: Run pytest composite
5555
uses: ./.github/workflows/pytest
5656
with:
@@ -62,7 +62,7 @@ jobs:
6262
runs-on: ubuntu-latest
6363
needs: [ pytest ] # starts only after pytest completes
6464
steps:
65-
- uses: actions/checkout@v4
65+
- uses: actions/checkout@v5
6666
- name: Run SonarCloud composite
6767
uses: ./.github/workflows/sonar
6868
with:

0 commit comments

Comments
 (0)