Skip to content

Commit 6e4de76

Browse files
authored
Merge branch 'main' into dependabot/github_actions/actions/checkout-4
2 parents 8567287 + b0325d0 commit 6e4de76

File tree

12 files changed

+43
-29
lines changed

12 files changed

+43
-29
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ jobs:
2323
- uses: actions/checkout@v4
2424
with:
2525
fetch-depth: 0
26-
- uses: actions/setup-python@v4
26+
- uses: actions/setup-python@v5
2727
with:
2828
python-version: ${{ env.python_version}}
2929
- uses: FranzDiebold/github-env-vars-action@v2
3030
- name: Load Python Dependencies from cache
31-
uses: actions/cache@v3
31+
uses: actions/cache@v4
3232
with:
3333
path: ${{ env.python_cache_ubuntu_path }}
3434
key: linux-pip-3-continuous-delivery-scripts
@@ -52,7 +52,7 @@ jobs:
5252
runs-on: ubuntu-latest
5353
steps:
5454
- uses: actions/checkout@v4
55-
- uses: actions/setup-python@v4
55+
- uses: actions/setup-python@v5
5656
with:
5757
python-version: ${{ env.python_version}}
5858
- name: Determine dependencies
@@ -70,7 +70,7 @@ jobs:
7070
python -m pipenv requirements > dev-requirements.txt
7171
- uses: FranzDiebold/github-env-vars-action@v2
7272
- name: Load Python Dependencies from cache
73-
uses: actions/cache@v3
73+
uses: actions/cache@v4
7474
with:
7575
path: ${{ env.python_cache_ubuntu_path }}
7676
key: linux-pip-3-continuous-delivery-scripts
@@ -94,7 +94,7 @@ jobs:
9494
runs-on: ubuntu-latest
9595
steps:
9696
- uses: actions/checkout@v4
97-
- uses: actions/setup-python@v4
97+
- uses: actions/setup-python@v5
9898
with:
9999
python-version: ${{ env.python_version}}
100100
- name: Determine dependencies
@@ -112,7 +112,7 @@ jobs:
112112
python -m pipenv requirements > dev-requirements.txt
113113
- uses: FranzDiebold/github-env-vars-action@v2
114114
- name: Load Python Dependencies from cache
115-
uses: actions/cache@v3
115+
uses: actions/cache@v4
116116
with:
117117
path: ${{ env.python_cache_ubuntu_path }}
118118
key: linux-pip-3-continuous-delivery-scripts
@@ -131,7 +131,7 @@ jobs:
131131
- name: Add copyright/licence notice.
132132
run: |
133133
cd-license-files
134-
- uses: actions/upload-artifact@v3
134+
- uses: actions/upload-artifact@v4
135135
with:
136136
name: spdx
137137
path: ./spdx-tmp
@@ -140,7 +140,7 @@ jobs:
140140
name: Check for secrets
141141
runs-on: ubuntu-latest
142142
steps:
143-
- uses: actions/setup-python@v4
143+
- uses: actions/setup-python@v5
144144
with:
145145
python-version: ${{ env.python_version}}
146146
- name: Install tools
@@ -195,7 +195,7 @@ jobs:
195195
steps:
196196
- uses: actions/checkout@v4
197197
- name: Set up Python ${{ matrix.python-version }}
198-
uses: actions/setup-python@v4
198+
uses: actions/setup-python@v5
199199
with:
200200
python-version: ${{ matrix.python-version }}
201201
- name: Install python tools
@@ -232,7 +232,7 @@ jobs:
232232
echo "Path to dependency cache: [${{ env.CACHE_PATH }}]"
233233
- name: Load Python Dependencies from cache
234234
if: ${{ ! startsWith(matrix.os, 'windows') }}
235-
uses: actions/cache@v3
235+
uses: actions/cache@v4
236236
with:
237237
path: ${{ env.CACHE_PATH }}
238238
key: ${{ matrix.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('**/dev-requirements.txt') }}
@@ -257,4 +257,4 @@ jobs:
257257
run: |
258258
pytest
259259
- name: Upload coverage reports to Codecov with GitHub Action
260-
uses: codecov/codecov-action@v3
260+
uses: codecov/codecov-action@v5

.github/workflows/codeql-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL
45-
uses: github/codeql-action/init@v2
45+
uses: github/codeql-action/init@v3
4646
with:
4747
languages: ${{ matrix.language }}
4848
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -53,7 +53,7 @@ jobs:
5353
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5454
# If this step fails, then you should remove it and run the build manually (see below)
5555
- name: Autobuild
56-
uses: github/codeql-action/autobuild@v2
56+
uses: github/codeql-action/autobuild@v3
5757

5858
# ℹ️ Command-line programs to run using the OS shell.
5959
# 📚 https://git.io/JvXDl
@@ -67,4 +67,4 @@ jobs:
6767
# make release
6868

6969
- name: Perform CodeQL Analysis
70-
uses: github/codeql-action/analyze@v2
70+
uses: github/codeql-action/analyze@v3

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141

4242
# Initializes the CodeQL tools for scanning.
4343
- name: Initialize CodeQL
44-
uses: github/codeql-action/init@v2
44+
uses: github/codeql-action/init@v3
4545
with:
4646
languages: ${{ matrix.language }}
4747
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -55,7 +55,7 @@ jobs:
5555
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
5656
# If this step fails, then you should remove it and run the build manually (see below)
5757
- name: Autobuild
58-
uses: github/codeql-action/autobuild@v2
58+
uses: github/codeql-action/autobuild@v3
5959

6060
# ℹ️ Command-line programs to run using the OS shell.
6161
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -68,6 +68,6 @@ jobs:
6868
# ./location_of_script_within_repo/buildscript.sh
6969

7070
- name: Perform CodeQL Analysis
71-
uses: github/codeql-action/analyze@v2
71+
uses: github/codeql-action/analyze@v3
7272
with:
7373
category: "/language:${{matrix.language}}"

.github/workflows/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v4
1515
with:
1616
fetch-depth: 0
17-
- uses: actions/setup-python@v4
17+
- uses: actions/setup-python@v5
1818
- uses: FranzDiebold/github-env-vars-action@v2
1919
- name: Install CI/CD tools
2020
run: |

.github/workflows/dependency-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ jobs:
1717
- name: 'Checkout Repository'
1818
uses: actions/checkout@v4
1919
- name: 'Dependency Review'
20-
uses: actions/dependency-review-action@v3
20+
uses: actions/dependency-review-action@v4

.github/workflows/mypy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v4
1515
- name: Setup Python
16-
uses: actions/setup-python@v4
16+
uses: actions/setup-python@v5
1717
with:
1818
python-version: "3.11"
1919
- name: Install pipenv

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- uses: actions/checkout@v4
20-
- uses: actions/setup-python@v4
20+
- uses: actions/setup-python@v5
2121
with:
2222
python-version: ${{ env.python_version }}
2323
- name: Determine dependencies
@@ -35,7 +35,7 @@ jobs:
3535
python -m pipenv requirements > dev-requirements.txt
3636
- uses: FranzDiebold/github-env-vars-action@v2
3737
- name: Load Python Dependencies from cache
38-
uses: actions/cache@v3
38+
uses: actions/cache@v4
3939
with:
4040
path: ~/.cache/pip
4141
key: linux-pip-3-continuous-delivery-scripts

.github/workflows/scorecards.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,14 @@ jobs:
5959
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
6060
# format to the repository Actions tab.
6161
- name: "Upload artifact"
62-
uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 # v3.1.0
62+
uses: actions/upload-artifact@ff15f0306b3f739f7b6fd43fb5d26cd321bd4de5 # v3.2.1
6363
with:
6464
name: SARIF file
6565
path: results.sarif
6666
retention-days: 5
6767

6868
# Upload the results to GitHub's code scanning dashboard.
6969
- name: "Upload to code-scanning"
70-
uses: github/codeql-action/upload-sarif@807578363a7869ca324a79039e6db9c843e0e100 # v2.1.27
70+
uses: github/codeql-action/upload-sarif@673cceb2b4886e2dfff697ab64a1ecd1c0a14a05 # v2.28.0
7171
with:
7272
sarif_file: results.sarif

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,20 @@ This project was forked from version 1.7.4 of [mbed-tools-ci-scripts](https://gi
1717

1818
[//]: # (begin_release_notes)
1919

20+
"3.2.2" (2025-01-10)
21+
====================
22+
23+
Bugfixes
24+
--------
25+
26+
- Dependency upgrade: dependency-review-action-4 (#20250110071913)
27+
- Dependency upgrade: setup-python-5 (#20250110071916)
28+
- Dependency upgrade: codeql-action-3 (#20250110072020)
29+
- Dependency upgrade: codecov-action-5 (#20250110072146)
30+
- Dependency upgrade: upload-artifact-4 (#20250110072331)
31+
- Dependency upgrade: cache-4 (#20250110072723)
32+
33+
2034
"3.2.1" (2025-01-09)
2135
====================
2236

continuous_delivery_scripts/_version.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
1111
This file is autogenerated, do not modify by hand.
1212
"""
13-
__version__ = "3.2.1"
14-
COMMIT = "516e08deffc6bba1a9fd975f52587189e19ef5aa"
13+
__version__ = "3.2.2"
14+
COMMIT = "e09a05b6199b3e0b1486786df4ac679deffd084d"
1515
MAJOR = 3
1616
MINOR = 2
17-
PATCH = 1
17+
PATCH = 2

0 commit comments

Comments
 (0)