We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11e2f47 commit 4f81a01Copy full SHA for 4f81a01
.github/workflows/mysql-version-check.yml
@@ -1,19 +1,21 @@
1
name: Block MySQL 5.x Usage
2
-
3
on:
4
pull_request:
5
branches:
6
- develop
7
8
jobs:
9
mysql-check:
10
runs-on:
11
labels: self-hosted
12
13
steps:
+ - name: Create GitHub App token
+ id: github-app-token
+ uses: actions/create-github-app-token@v2
14
+ with:
15
+ app-id: ${{ secrets.InsiderActionsApplication_APP_ID }}
16
+ private-key: ${{ secrets.InsiderActionsApplication_PRIVATE_KEY }}
17
- name: Checkout code
18
uses: actions/checkout@v4
19
- name: Check for MySQL 5.x
20
run: |
21
echo "Scanning for MySQL 5.x usage..."
@@ -30,4 +32,4 @@ jobs:
30
32
exit 1
31
33
else
34
echo "No MySQL 5.x usage found."
- fi
35
+ fi
0 commit comments