Skip to content

Commit c23a591

Browse files
committed
chore(deps): downgrade actions/checkout and actions/setup-python versions
1 parent f0ce1eb commit c23a591

11 files changed

Lines changed: 21 additions & 21 deletions

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
contents: read
2323
steps:
2424
- name: "Checkout Repository"
25-
uses: actions/checkout@v7
25+
uses: actions/checkout@v4
2626
with:
2727
ref: ${{ github.event.pull_request.head.sha || github.sha }}
2828
fetch-depth: 0
@@ -34,7 +34,7 @@ jobs:
3434
enable-cache: true
3535

3636
- name: "Set up Python"
37-
uses: actions/setup-python@v7
37+
uses: actions/setup-python@v6
3838
with:
3939
python-version: ${{ env.PYTHON_VERSION }}
4040

.github/workflows/check-version-bump.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ${{ contains(github.server_url, 'github.com') && 'ubuntu-latest' || fromJSON('["self-hosted"]') }}
1515
steps:
1616
- name: Checkout repository
17-
uses: actions/checkout@v7
17+
uses: actions/checkout@v4
1818
with:
1919
fetch-depth: 0
2020

.github/workflows/checks.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
contents: read
2020
steps:
2121
- name: "Checkout PR Code"
22-
uses: actions/checkout@v7
22+
uses: actions/checkout@v4
2323

2424
- name: "Install uv"
2525
uses: astral-sh/setup-uv@v3
@@ -28,7 +28,7 @@ jobs:
2828
enable-cache: true
2929

3030
- name: "Set up Python"
31-
uses: actions/setup-python@v7
31+
uses: actions/setup-python@v6
3232
with:
3333
python-version: ${{ env.PYTHON_VERSION }}
3434

.github/workflows/codeql.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,16 @@ jobs:
2828

2929
steps:
3030
- name: Checkout repository
31-
uses: actions/checkout@v7
31+
uses: actions/checkout@v6
3232

3333
- name: Initialize CodeQL
34-
uses: github/codeql-action/init@v4.37.3
34+
uses: github/codeql-action/init@v4
3535
with:
3636
languages: ${{ matrix.language }}
3737
build-mode: ${{ matrix.build-mode }}
3838
config-file: ./.github/codeql/codeql-config.yml
3939

4040
- name: Perform CodeQL Analysis
41-
uses: github/codeql-action/analyze@v4.37.3
41+
uses: github/codeql-action/analyze@v4
4242
with:
4343
category: "/language:${{matrix.language}}"

.github/workflows/commit-validation.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ jobs:
1717
runs-on: ${{ contains(github.server_url, 'github.com') && 'ubuntu-latest' || fromJSON('["self-hosted"]') }}
1818
steps:
1919
- name: Checkout repository
20-
uses: actions/checkout@v7
20+
uses: actions/checkout@v4
2121
with:
2222
fetch-depth: 0
2323

2424
- name: Setup node
25-
uses: actions/setup-node@v7
25+
uses: actions/setup-node@v4
2626
with:
2727
node-version: 22
2828

.github/workflows/integration-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626
contents: read
2727
steps:
2828
- name: Checkout code
29-
uses: actions/checkout@v7
29+
uses: actions/checkout@v4
3030

3131
- name: Set up Python
32-
uses: actions/setup-python@v7
32+
uses: actions/setup-python@v6
3333
with:
3434
python-version: '3.11'
3535

.github/workflows/proto-verify.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
steps:
2727
- name: Check out repository
28-
uses: actions/checkout@v7
28+
uses: actions/checkout@v4
2929

3030
- name: Install buf
3131
uses: bufbuild/buf-setup-action@v1

.github/workflows/release-internal.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
if: ${{ !contains(github.server_url, 'github.com') }}
1818
steps:
1919
- name: Checkout repository
20-
uses: actions/checkout@v7
20+
uses: actions/checkout@v4
2121

2222
- name: Set up Python
23-
uses: actions/setup-python@v7
23+
uses: actions/setup-python@v4
2424
with:
2525
python-version: "3.11"
2626

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
environment: 'pypi:sap-cloud-sdk'
1515
steps:
1616
- name: Checkout repository
17-
uses: actions/checkout@v7
17+
uses: actions/checkout@v4
1818

1919
- name: Set up Python
20-
uses: actions/setup-python@v7
20+
uses: actions/setup-python@v6
2121
with:
2222
python-version: "3.11"
2323

@@ -57,4 +57,4 @@ jobs:
5757
run: uv build
5858

5959
- name: Publish to PyPI
60-
uses: pypa/gh-action-pypi-publish@v1.14.2
60+
uses: pypa/gh-action-pypi-publish@v1.14.0

.github/workflows/reuse.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
name: REUSE Compliance Check
1717
runs-on: ${{ contains(github.server_url, 'github.com') && 'ubuntu-latest' || fromJSON('["self-hosted"]') }}
1818
steps:
19-
- uses: actions/checkout@v7
19+
- uses: actions/checkout@v6
2020

2121
- name: REUSE Compliance Check
2222
uses: fsfe/reuse-action@v6.0.0

0 commit comments

Comments
 (0)