@@ -36,17 +36,17 @@ jobs:
36
36
37
37
steps :
38
38
- name : Checkout repository
39
- uses : actions/checkout@v3
39
+ uses : actions/checkout@v4
40
40
with :
41
41
ref : ${{ github.event.pull_request.head.sha }}
42
42
43
43
- name : Initialize CodeQL
44
- uses : github/codeql-action/init@v2
44
+ uses : github/codeql-action/init@v3
45
45
with :
46
46
languages : ${{ matrix.language }}
47
47
48
48
- name : Perform CodeQL Analysis
49
- uses : github/codeql-action/analyze@v2
49
+ uses : github/codeql-action/analyze@v3
50
50
51
51
analyze_unsafe :
52
52
if : github.repository_owner == 'PaloAltoNetworks' && needs.precheck.outputs.is-org-member-result != 'null'
@@ -70,12 +70,12 @@ jobs:
70
70
ref : ${{ github.event.pull_request.head.sha }}
71
71
72
72
- name : Initialize CodeQL
73
- uses : github/codeql-action/init@v2
73
+ uses : github/codeql-action/init@v3
74
74
with :
75
75
languages : ${{ matrix.language }}
76
76
77
77
- name : Perform CodeQL Analysis
78
- uses : github/codeql-action/analyze@v2
78
+ uses : github/codeql-action/analyze@v3
79
79
80
80
build :
81
81
name : Build
@@ -89,12 +89,12 @@ jobs:
89
89
90
90
steps :
91
91
- name : Checkout repository
92
- uses : actions/checkout@v3
92
+ uses : actions/checkout@v4
93
93
with :
94
94
ref : ${{ github.event.pull_request.head.sha }}
95
95
96
96
- name : Setup node
97
- uses : actions/setup-node@v3
97
+ uses : actions/setup-node@v4
98
98
with :
99
99
node-version : " 18"
100
100
cache : " yarn"
@@ -108,7 +108,7 @@ jobs:
108
108
- name : Build site
109
109
run : yarn build-demo && zip -r build.zip demo/build
110
110
111
- - uses : actions/upload-artifact@v3
111
+ - uses : actions/upload-artifact@v4
112
112
with :
113
113
name : build
114
114
path : build.zip
@@ -121,15 +121,15 @@ jobs:
121
121
122
122
steps :
123
123
- name : Checkout repository
124
- uses : actions/checkout@v3
124
+ uses : actions/checkout@v4
125
125
126
126
- name : Setup node
127
- uses : actions/setup-node@v3
127
+ uses : actions/setup-node@v4
128
128
with :
129
129
node-version : " 18"
130
130
cache : " yarn"
131
131
132
- - uses : actions/download-artifact@v4.1.7
132
+ - uses : actions/download-artifact@v4
133
133
with :
134
134
name : build
135
135
@@ -138,7 +138,7 @@ jobs:
138
138
139
139
- name : Deploy to Firebase
140
140
id : deploy_preview
141
- uses : FirebaseExtended/action-hosting-deploy@276388dd6c2cde23455b30293105cc866c22282d # v0.6-alpha
141
+ uses : FirebaseExtended/action-hosting-deploy@0cbcac4740c2bfb00d632f0b863b57713124eb5a # v0.9.0
142
142
with :
143
143
repoToken : " ${{ secrets.GITHUB_TOKEN }}"
144
144
firebaseServiceAccount : " ${{ secrets.FIREBASE_SERVICE_ACCOUNT_PANDEV }}"
0 commit comments