Skip to content

Commit 998d818

Browse files
Merge pull request #304 from CPS-IT/renovate/pin-dependencies
[TASK] Pin dependencies
2 parents 2551957 + 0e59d9a commit 998d818

4 files changed

Lines changed: 16 additions & 16 deletions

File tree

.github/workflows/cgl.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ jobs:
1111
cgl:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v6
14+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
1515
with:
1616
fetch-depth: 0
1717

1818
# Prepare environment
1919
- name: Setup PHP
20-
uses: shivammathur/setup-php@v2
20+
uses: shivammathur/setup-php@7c071dfe9dc99bdf297fa79cb49ea005b9fcadbc # v2
2121
with:
2222
# We use the minimum supported PHP version
2323
php-version: 8.2

.github/workflows/crowdin.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
name: Synchronize with Crowdin
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v6
12+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
1313

1414
- name: Upload sources
15-
uses: crowdin/github-action@v2
15+
uses: crowdin/github-action@8868a33591d21088edfc398968173a3b98d51706 # v2
1616
env:
1717
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1818
with:

.github/workflows/release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
outputs:
1313
release-notes-url: ${{ steps.create-release.outputs.html_url }}
1414
steps:
15-
- uses: actions/checkout@v6
15+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
1616
with:
1717
fetch-depth: 0
1818

@@ -26,7 +26,7 @@ jobs:
2626
# Create release
2727
- name: Create release
2828
id: create-release
29-
uses: ncipollo/release-action@v1
29+
uses: ncipollo/release-action@339a81892b84b4eeb0f6e744e4574d79d0d9b8dd # v1
3030
with:
3131
generateReleaseNotes: true
3232

@@ -40,7 +40,7 @@ jobs:
4040
TYPO3_API_TOKEN: ${{ secrets.TYPO3_API_TOKEN }}
4141
TYPO3_EXCLUDE_FROM_PACKAGING: packaging_exclude.php
4242
steps:
43-
- uses: actions/checkout@v6
43+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
4444
with:
4545
fetch-depth: 0
4646

@@ -59,7 +59,7 @@ jobs:
5959

6060
# Prepare environment
6161
- name: Setup PHP
62-
uses: shivammathur/setup-php@v2
62+
uses: shivammathur/setup-php@7c071dfe9dc99bdf297fa79cb49ea005b9fcadbc # v2
6363
with:
6464
php-version: 8.2
6565
extensions: intl, mbstring, json, zip, curl

.github/workflows/tests.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ jobs:
2727
typo3DatabaseUsername: root
2828
typo3DatabasePassword: root
2929
steps:
30-
- uses: actions/checkout@v6
30+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
3131
with:
3232
fetch-depth: 0
3333

3434
# Prepare environment
3535
- name: Setup PHP
36-
uses: shivammathur/setup-php@v2
36+
uses: shivammathur/setup-php@7c071dfe9dc99bdf297fa79cb49ea005b9fcadbc # v2
3737
with:
3838
php-version: ${{ matrix.php-version }}
3939
tools: composer:v2
@@ -45,7 +45,7 @@ jobs:
4545

4646
# Install dependencies
4747
- name: Install Composer dependencies
48-
uses: ramsey/composer-install@4.0.0
48+
uses: ramsey/composer-install@65e4f84970763564f46a70b8a54b90d033b3bdda # 4.0.0
4949
with:
5050
dependency-versions: ${{ matrix.dependencies }}
5151
composer-options: --with=typo3/cms-core:"^${{ matrix.typo3-version }}" ${{ matrix.composer-options }}
@@ -63,13 +63,13 @@ jobs:
6363
typo3DatabaseUsername: root
6464
typo3DatabasePassword: root
6565
steps:
66-
- uses: actions/checkout@v6
66+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
6767
with:
6868
fetch-depth: 0
6969

7070
# Prepare environment
7171
- name: Setup PHP
72-
uses: shivammathur/setup-php@v2
72+
uses: shivammathur/setup-php@7c071dfe9dc99bdf297fa79cb49ea005b9fcadbc # v2
7373
with:
7474
php-version: 8.5
7575
tools: composer:v2
@@ -81,7 +81,7 @@ jobs:
8181

8282
# Install dependencies
8383
- name: Install Composer dependencies
84-
uses: ramsey/composer-install@4.0.0
84+
uses: ramsey/composer-install@65e4f84970763564f46a70b8a54b90d033b3bdda # 4.0.0
8585

8686
# Run tests
8787
- name: Run tests
@@ -103,7 +103,7 @@ jobs:
103103
runs-on: ubuntu-latest
104104
needs: coverage
105105
steps:
106-
- uses: actions/checkout@v6
106+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
107107
with:
108108
fetch-depth: 0
109109

@@ -116,6 +116,6 @@ jobs:
116116

117117
# Coveralls
118118
- name: Coveralls report
119-
uses: coverallsapp/github-action@v2
119+
uses: coverallsapp/github-action@5cbfd81b66ca5d10c19b062c04de0199c215fb6e # v2
120120
with:
121121
file: ${{ steps.download.outputs.download-path }}/clover.xml

0 commit comments

Comments
 (0)