Skip to content

Commit 6abce51

Browse files
garvinhickingGarvin Hicking
andcommitted
[!][TASK] Adjust GH workflow to fix SHA commits: TYPO3-Documentation/render-guides#1194 (#6412)
Co-authored-by: Garvin Hicking <garvin.hicking@ppw.de>
1 parent 2e21df8 commit 6abce51

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

.github/workflows/apply-precommit.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout code
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
1717
with:
1818
token: ${{ secrets.GITHUB_TOKEN }}
1919

2020
- name: Set up Python
21-
uses: actions/setup-python@v2
21+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
2222
with:
2323
python-version: '3.x'
2424

@@ -53,7 +53,7 @@ jobs:
5353

5454
- name: Open Pull Request
5555
if: env.FIX_NEEDED == 'true'
56-
uses: repo-sync/pull-request@v2
56+
uses: repo-sync/pull-request@7e79a9f5dc3ad0ce53138f01df2fad14a04831c5
5757
with:
5858
source_branch: ${{ env.branch_name }}
5959
destination_branch: ${{ github.ref_name }}

.github/workflows/backport.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ jobs:
1414
pull-requests: write # needed to open the PR
1515
steps:
1616
- name: Backport
17-
uses: m-kuhn/backport@v1.2.6
17+
uses: m-kuhn/backport@30b6e83906cc97bad3a02867181d6236becf68f9
1818
with:
1919
github_token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/test-documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
1818

1919
- name: Test if the documentation will render without warnings
2020
run: |

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- '8.5'
2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@v5
24+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
2525

2626
- name: Lint PHP
2727
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s lint
@@ -35,7 +35,7 @@ jobs:
3535
php: '8.2'
3636
steps:
3737
- name: Checkout
38-
uses: actions/checkout@v5
38+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
3939

4040
- name: Install testing system
4141
run: Build/Scripts/runTests.sh -p ${{ env.php }} -s composerUpdate

Documentation/Administration/Deployment/Automated/Index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ TYPO3 Lexicon <https://github.com/froemken/typo3lexikon/blob/main/.github/workfl
150150
runs-on: ubuntu-latest
151151
152152
steps:
153-
- uses: actions/checkout@v4
153+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
154154
155155
- name: Set up PHP
156156
uses: shivammathur/setup-php@v2

Documentation/ApiOverview/Localization/TranslationServer/Crowdin/_codesnippets/_crowdin.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: Synchronize with Crowdin
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
1616

1717
- name: Upload sources
1818
uses: crowdin/github-action@v2

Documentation/Testing/Tutorial/Acceptance.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ To tell the CI what to do, create a new workflow file in
233233
runs-on: ubuntu-20.04
234234
steps:
235235
- name: Checkout
236-
uses: actions/checkout@v2
236+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
237237
238238
- name: Start DDEV
239239
uses: jonaseberle/github-action-setup-ddev@v1

Documentation/Testing/Tutorial/Enetcache.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ in `.github/workflows/ci.yml <https://github.com/lolli42/enetcache/blob/master/.
438438
minMax: [ 'composerInstallMin', 'composerInstallMax' ]
439439
steps:
440440
- name: Checkout
441-
uses: actions/checkout@v2
441+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
442442
443443
- name: Composer
444444
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s ${{ matrix.minMax }}
@@ -835,7 +835,7 @@ define the jobs in `.github/workflows/tests.yml <https://github.com/TYPO3/styleg
835835
php: [ '8.1', '8.2' ]
836836
steps:
837837
- name: Checkout
838-
uses: actions/checkout@v3
838+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
839839
840840
- name: Install dependencies
841841
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s composerUpdate

0 commit comments

Comments
 (0)